필드 및 전역 변수 만들기
String id;
String pwd;
int age;
char gender;
String[] hobby;
2.Member 필드 및 전역변수
Application
Member
Application (메인)
carRacer
car
1.Application
2.MemberDTO
1.Application
2.User
문제
Application
BookDTO
Application
BookDTO
기본자료형과 나머지의 차이
1.Application
2.Parametertest
1.Application
2.Parametertest
1.Application
2.Parametertest
3.Rectangle
1.Application
2.Parametertest
1.Application
2.StaticFieldTest
1.Application
3.StaticMethodTest
스태틱은 클래스변수
non스태틱은 인스턴스 변수(객체)
1.Application
2.product
클래스는 서로 다른 자료형의 데이터들을 하나로 묶어 새로운 타입을 정의하는것
변수 선언 및 객체 생성---------Student안에있는 필드
//레퍼런스 변수(std) : 주소값 ------- 필드생성
자료형 변수명 = new 클래스명 ----- String id;
클래스명-------------------------------String pwd;
Student std = new Student(); --------String name;'
-----------------------------------------int age;
-----------------------------------------char gender;
-----------------------------------------String[] hobby;
System.out.println(std.id); 이런식으로 호출한다 하지만 아직 값을 안넣어줬기 떄문에 null이라는 결과가 나온다