java中setText的问题
想在按钮上加一个“我的第一个Button”的值在编译一段java代码时myButton.setText("我的第一个Button");这段中的setText会报错:The...
想在按钮上加一个“我的第一个Button”的值
在编译一段java代码时
myButton.setText("我的第一个Button");
这段中的setText会报错:The method setText(String) is undefined for the type Button
要怎么定义setText呢? 展开
在编译一段java代码时
myButton.setText("我的第一个Button");
这段中的setText会报错:The method setText(String) is undefined for the type Button
要怎么定义setText呢? 展开
展开全部
哈哈
Button myButton = new Button();
myButton.setText("我的第一个Button");
或者Button myButton = new Button("我的第一个Button");
//
你要用一个控件的时候,你必须得初始化实例化他。
Button myButton = null;//初始化 在栈中分配一个地址空间、
myButton = new Button();//这个是实例化。在堆中分配控件,存值的。
堆栈不知道有没有搞反,你一定要看看堆栈这些东西。
Button myButton = new Button();
myButton.setText("我的第一个Button");
或者Button myButton = new Button("我的第一个Button");
//
你要用一个控件的时候,你必须得初始化实例化他。
Button myButton = null;//初始化 在栈中分配一个地址空间、
myButton = new Button();//这个是实例化。在堆中分配控件,存值的。
堆栈不知道有没有搞反,你一定要看看堆栈这些东西。
展开全部
myButton这个对象的类型是Button,Button是没有setText()方法的。要使用JButton才有setText()方法。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
void setLabel(String label)
将按钮的标签设置为指定的字符串
将按钮的标签设置为指定的字符串
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
嗬,你很搞笑~扔这么大一个标题出来,啥内容都没有。。。
setText(text);
setText(text);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询