stacic
System.out.println(Card.height);
System.out.println(Card.width);
Card c1 = new Card();
Card c2 = new Card();
c1.color = "red";
c2.color = "bule";
c1.height =80;
c2.height = 60;
static 변수는 객체가 다른 값이 나올수가 없다.
클래스 변수는 값이 두개다 똑같음
System.out.println(c1.height);
System.out.println(c2.height);
//결과는 c1 c2 모두 60
Author And Source
이 문제에 관하여(stacic), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@songinjun0728/stacic저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)