Do you want BuboFlash to help you learning these things? Or do you want to add or correct something? Click here to log in or create user.



#자바
Counter.java라는 파일 내에 Updator와 Counter라는 클래스 2개가 등장했다. 이것은 조금 특이하지만 물론 가능한 코드이다. 하나의 java파일내에는 여러개의 클래스를 선언할 수 있다. 단 파일명이 Counter.java라면 Counter.java 내의 Counter라는 클래스는 public 으로 선언하라는 관례(규칙)가 있다.

//다른 하나의 클래스에는 public 이라는 키워드를 사용하면 안된다. public class 이름{}에서 public은 해당 파일 명과 같다는 의미이다. 메쏘드 앞에 사용하는 public은 외부에서 접근가능하다는 의미로 다른 뜻으로 사용된다.
If you want to change selection, open document below and click on "Move attachment"

05-3 Call by value
tln("before update:"+myCounter.count); Updator myUpdator = new Updator(); myUpdator.update(myCounter.count); System.out.println("after update:"+myCounter.count); } } <span>Counter.java라는 파일 내에 Updator와 Counter라는 클래스 2개가 등장했다. 이것은 조금 특이하지만 물론 가능한 코드이다. 하나의 java파일내에는 여러개의 클래스를 선언할 수 있다. 단 파일명이 Counter.java라면 Counter.java 내의 Counter라는 클래스는 public 으로 선언하라는 관례(규칙)가 있다. Updator 클래스는 전달받은 숫자를 1만큼 증가시키는 update라는 메소드를 가지고 있다. Counter 클래스는 count라는 객체변수를 가지고 있다. Counter클래스의 main메소드는 Counter클래스에 의해 생성된 객체의 객체변수 count의 값을 Updator클래


Summary

statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

Details



Discussion

Do you want to join discussion? Click here to log in or create user.