public class s extends Frame {
public String motd;
public s(String s) {
//set our title
super( "Memo Frame ");
motd = s;
resize(300,300); //////就是这个上面
}
------解决方案--------------------
表示该方法已过时
------解决方案--------------------
过时的方法,本来应该废气,但是为了兼容以前的版本,或者照顾到一些老的用户,还是保留了下来。