[ java ] person 에 대한 클래스와 메소드 작성 - 단축키 alt+shift+s
페이지 정보
작성자 웹지기 댓글 0건 조회 3,400회 작성일 20-12-18 14:55본문
클래스 작성시 필드에 대한 것과 메소드에 대한 정의는 단축키 Alt + Shift + s
public class Person {
private String name;
private int age;
public Person() {
super();//상속받은 클래스를 그대로 가지고 오겠다라는 뜻.
}
public Person(String name, int age) {
super();//상속받은 클래스를 그대로 가지고 오겠다라는 뜻.
this.name = name;
this.age = age;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return Age;
}
public void setAge(int age) {
Age = age;
}
}
public class personMain {
public static void main(String[] args) {
Person person1 = new Person();
person1.setName("장승원");
person1.setAge(46);
Person person2 = new Person();
person2.setName("김은향");
person2.setAge(46);
System.out.println("st1객체 학생의 이름 :"+person1.getName()+", 나이 : "+person1.getAge());
System.out.println("st2객체 학생의 이름 :"+person2.getName()+", 나이 : "+person2.getAge());
}
}
댓글목록
등록된 댓글이 없습니다.