\
2021.03.29 - [JAVA/JAVA(자바)설치 및 툴 이용(ECLIPSE)] - [JAVA] 자바 설치 및 환경 하기 JDK 1.8 버전
개발 환경
Window 10
JDK 1.8
이클립스 2020_03 버전
> static member 호출 방법 >
객체명.스태틱멤버 또는 스태틱멤버함수()
클래스명.스태틱멤버 또는 스태틱멤버함수()
public static void view() {
total = total +100;
//count = count + 100
}
public static void show(int count,int total) {
this.count = count;
this.total = total;
}
package ex06.staticMember;
class Atm{
int count;
static int total; // static member
public Atm(int amount) {// 생성자 함수
count += amount;// count = count + amount;
total += amount;//total = total +amount
}
//static member 에서 일반 멤버변수는 사용 할수없다
public static void view() {
total = total +100;
//count = count + 100
}
//static member 에서는 this 키워드 사용할 수 없다
public static void show(int count,int total) {
this.count = count;
this.total = total;
}
public void display() {
System.out.println("count ="+count);
System.out.println("total ="+total);
}
}
public class MainEntry {
public static void main(String[] args) {
// 생성자 함수로 돌아간다
System.out.println(Atm.total);
Atm at = new Atm(1000);// 천원 개설
at.display();
System.out.println("===========");
Atm at2 = new Atm(1000);//
at.display();
System.out.println("===========");
Atm at3 = new Atm(1000);//
at.display();
System.out.println("===========");
}
}
[JAVA] 자바 체팅 프로그램 V_1/ TCP 방식/로컬에서 Clint 와 server 만들어서 주고 받기 (0) | 2021.04.15 |
---|---|
[JAVA] javax/Swing/check 라디오 만들기 (0) | 2021.04.14 |
[JAVA] awt/frame 새창 띄우기 (0) | 2021.04.14 |
[JAVA]자바 Synchronized 동기화 / 금융거래 필수 (0) | 2021.04.14 |
inner class ,anonymos class로 만들기 (0) | 2018.03.26 |