자바 계산기 덧셈 애플 릿 구현(그래 픽 인터페이스)
(1)구성원 의 국부 변 수 를 전달 하 는 방법,구체 적 인 코드 는 다음 과 같다.
package 11;
import java.awt.*;
import java.awt.event.*;
public class Test {
public static void main(String[]args){
new MyFrame().launchMyFrame();
}
}
class MyFrame extends Frame{
public void launchMyFrame(){
TextField tf1 = new TextField();
TextField tf2 = new TextField();
TextField tf3 = new TextField();
Label l = new Label("+");
Button b = new Button("=");
Monitor m = new Monitor(tf1, tf2, tf3); // Monitor
b.addActionListener(m);
setLayout(new FlowLayout());
add(tf1);
add(l);
add(tf2);
add(b);
add(tf3);
pack();
setVisible(true);
}
}
class Monitor implements ActionListener{
TextField tf1, tf2, tf3;
public Monitor(TextField tf1, TextField tf2, TextField tf3){
this.tf1 = tf1;
this.tf2 = tf2;
this.tf3 = tf3;
}
public void actionPerformed(ActionEvent e){
int a = Integer.parseInt(tf1.getText());
int b = Integer.parseInt(tf2.getText());
int c = a + b;
tf3.setText(""+c);
System.out.println(c);
}
}
(2)인용 방식 을 전달 하고 구체 적 인 코드 는 다음 과 같다.
package 11;
import java.awt.*;
import java.awt.event.*;
public class Test {
public static void main(String[]args){
new MyFrame().launchMyFrame();
}
}
class MyFrame extends Frame{
TextField tf1, tf2, tf3;
public void launchMyFrame(){
tf1 = new TextField();
tf2 = new TextField();
Label l = new Label("+");
Button b = new Button("=");
Monitor m = new Monitor(this);
b.addActionListener(m);
setLayout(new FlowLayout());
add(tf1);
add(l);
add(tf2);
add(b);
add(tf3);
pack();
setVisible(true);
}
}
class Monitor implements ActionListener{
MyFrame mf = null;
public Monitor(MyFrame mf){
this.mf = mf;
}
public void actionPerformed(ActionEvent e){
int a = Integer.parseInt(mf.tf1.getText());
int b = Integer.parseInt(mf.tf2.getText());
int c = a + b;
mf.tf3.setText(""+c);
System.out.println(c);
}
}
요약:보통 두 번 째 방법 을 사용 하 는 것 이 좋 습 니 다.이벤트 모니터 에서 사건 발생 을 일 으 키 는 유형의 인용 만 받 으 면 되 기 때문에 이러한 유형의 구체 적 인 구성원 을 알 필요 가 없습니다.이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.