전체 글 (127) 썸네일형 리스트형 [Eclipse] Mac에서 이클립스 콘솔 글자 크기 변경 상단에 [Eclipse] - [Preferences] - [General] - [Appearance] - [Colors and Fonts] - [Basic] - [Text Font] Edit 선택하여 Size 변경 [Java] overrding 오버라이딩 package org.opentutorials.javatutorials.overriding; class Calculator { int left, right; public void setOperands(int left, int right) { this.left = left; this.right = right; } public void sum() { System.out.println(this.left + this.right); } } class CalculatorChildClass extends Calculator { public void sum() { System.out.println("값 은 " + (this.left + this.right)); } } public class CalculatorMain .. [Java] 생성자, super package org.opentutorials.javatutorials; public class ConstructorTest { public static void main(String[] args) { ConstructorTest c = new ConstructorTest(); } } 위는 에러가 안난다. ConstructorTest 객체를 생성할 때 자동으로 생성자를 만들어주기 때문 package org.opentutorials.javatutorials.Inheritance; public class ConstructorTest { public ConstructorTest(int param) {} //error public static void main(String[] args) { Constructor.. 이전 1 ··· 31 32 33 34 35 36 37 ··· 43 다음