当前位置: 技术问答>java相关
大家好,请问这两个程序为什么不能达到同样的效果
来源: 互联网 发布时间:2015-01-15
本文导语: 大家好,我是一名JAVA初学者,下面是书上的代码: import java.awt.*; import java.applet.*; class mydrawstring extends Applet { String str1; public void init() { str1="hello"; } public void paint(Graphics g) { g.drawString(str1,20,20); }...
大家好,我是一名JAVA初学者,下面是书上的代码:
import java.awt.*;
import java.applet.*;
class mydrawstring extends Applet
{
String str1;
public void init()
{
str1="hello";
}
public void paint(Graphics g)
{
g.drawString(str1,20,20);
}
}
下面是我自己写的代码:
import java.awt.*;
import java.applet.*;
class mydrawstring extends Applet
{
String str1;
public void init()
{
str1="hello";
}
public void start()
{
(getGraphics()).drawString(str1,20,20);
}
}
请问为什么两个程序不能达到同样的效果,我错在哪里?如果你愿意的话,请讲一下
init(),start(),paint()几个方法的区别,谢谢!
import java.awt.*;
import java.applet.*;
class mydrawstring extends Applet
{
String str1;
public void init()
{
str1="hello";
}
public void paint(Graphics g)
{
g.drawString(str1,20,20);
}
}
下面是我自己写的代码:
import java.awt.*;
import java.applet.*;
class mydrawstring extends Applet
{
String str1;
public void init()
{
str1="hello";
}
public void start()
{
(getGraphics()).drawString(str1,20,20);
}
}
请问为什么两个程序不能达到同样的效果,我错在哪里?如果你愿意的话,请讲一下
init(),start(),paint()几个方法的区别,谢谢!
|
init()
Called by the browser or applet viewer to inform this applet that it has been loaded into the system.
start()
Called by the browser or applet viewer to inform this applet that it should start its execution.
paint(Graphics g)
Paints the container.
执行顺序init->start->paint
Called by the browser or applet viewer to inform this applet that it has been loaded into the system.
start()
Called by the browser or applet viewer to inform this applet that it should start its execution.
paint(Graphics g)
Paints the container.
执行顺序init->start->paint
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。