반응형 리턴 타입1 main(String[] args) 메소드 깊이 있게 알아보자 (3) - Return Type - Return Type return type은 번역 그대로 반환할 type을 말하는 것이 다 java 의 자료형, 컬렉션 으로 return type을 지정가능 하다 그 외에 Class Instance으로도 명시 할 수 있다. public class TestGetter { private String testString; public String getTestString() { return testString; } public void setTestString(String testString) { this.testString = testString; } } 위 코드는 testString 변수의 String 자료형인 변수를 Class 이다 아래 코드에서 return type으로 지정할 Test Code이다... 2020. 5. 21. 이전 1 다음 반응형