parameter에 값을 전달하고 해당 변수명에 값을 할당하려는 시도였다.
시도했던 코드 :
while(reader.ready() && !data[0].equals(line = username + "\t" + password
+ "\t" + phoneNumber + "\t" + String.valueOf(reservedOrNot))){
readLine = reader.readLine();
data = readLine.split(";");
}
굵은 글씨 부분이다.
그런데 java 문법에 어긋난 행위다. 에러남
???????????
???????????
package classchum;
public class Test1212 {
public static void main(String argv[]){
int a, b;
a = test(b=2, 1);
System.out.println(a);
System.out.println(b);
}
static public int test(int a, int b){
return b;
}
}
public class Test1212 {
public static void main(String argv[]){
int a, b;
a = test(b=2, 1);
System.out.println(a);
System.out.println(b);
}
static public int test(int a, int b){
return b;
}
}
결과:
1
2
댓글 없음:
댓글 쓰기