Wasn't sure whether to make a new thread or not. but i'll post it here. I figured my explanation was not very good.
i have a class below
lets say int[] = 1204, 1205
public class Job {
private int[] serviceCode =;
public Job (int[] jobCode) {
serviceCode = jobCode;
}
public int[] getJobCode() {
return serviceCode;
}
and this is the main program
public class MainProgram {
public static void main {
}
}
how do i put the values of the array into separate integers?