2个回答
展开全部
引用:
在这个程序里面的a.getx()自定义方法,就需要返回值.
因为前面的实例变量x为整型
所以返回值类型也要是整型
然后用return返回x的值50
用a.getx()调用
使用System.out.println();输出return返回来的值
public class Test{
private int x=50;
public int getx(){
return x;
}
public static void main(String[] args){
Test a=new Test();
System.out.println(a.getx());
}
}
运行结果为50
在这个程序里面的a.getx()自定义方法,就需要返回值.
因为前面的实例变量x为整型
所以返回值类型也要是整型
然后用return返回x的值50
用a.getx()调用
使用System.out.println();输出return返回来的值
public class Test{
private int x=50;
public int getx(){
return x;
}
public static void main(String[] args){
Test a=new Test();
System.out.println(a.getx());
}
}
运行结果为50
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在类(class)中定义:
eg: class test
{
public int a;
public int test(int b)
{
a=b;
}
public int get_a() //方法 1
{
return a;
}
public void print() //方法2
{
System.out.println(this.get_a());
}
public static void main(String [] args) //主函数
{
test aa=new test(3); //初始化 aa
aa.print(); //调用 print方法
}
}
eg: class test
{
public int a;
public int test(int b)
{
a=b;
}
public int get_a() //方法 1
{
return a;
}
public void print() //方法2
{
System.out.println(this.get_a());
}
public static void main(String [] args) //主函数
{
test aa=new test(3); //初始化 aa
aa.print(); //调用 print方法
}
}
参考资料: 自己
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询