| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 813 人关注过本帖
标题:this问题
取消只看楼主 加入收藏
心动音符
Rank: 1
等 级:禁止访问
威 望:1
帖 子:832
专家分:0
注 册:2005-9-15
收藏
 问题点数:0 回复次数:1 
this问题

public class tirgon {
double a,b,c;
tirgon(){}
tirgon(double a,double b,double c)
{
setABC(a,b,c);
}
void setABC(double a,double b,double c)
{
tirgon tir=new tirgon();
tir.a=a;
tir.b=b;
tir.c=c;
}

}
class testtirgon
{
public static void main(String args [])
{
tirgon tir=new tirgon(3,4,5);
System.out.println("三角形的边是:"+tir.a+","+tir.b+","+tir.c+",");

}
}
编译出错
改成如下就可以我知道是this的缘故 但我总是弄不清楚this是怎么一回事 望高人指点
public class tirgon {
double a,b,c;
tirgon(double a,double b,double c)
{
setABC(this,a,b,c);
}
void setABC(tirgon tir,double a,double b,double c)
{
tir.a=a;
tir.b=b;
tir.c=c;
}

}
class testtirgon
{
public static void main(String args [])
{
tirgon tir=new tirgon(3,4,5);
System.out.println("三角形的边是:"+tir.a+","+tir.b+","+tir.c+",");

}
}

搜索更多相关主题的帖子: 三角形 public double 
2006-10-16 20:11
心动音符
Rank: 1
等 级:禁止访问
威 望:1
帖 子:832
专家分:0
注 册:2005-9-15
收藏
得分:0 

public class tirgon {
double a,b,c;
tirgon(double a,double b,double c)
{
setABC(a,b,c);
}
void setABC(double a,double b,double c)
{

this.a=a;
this.b=b;
this.c=c;/this 为什么能指向a,b,c呢?
}

}
class testtirgon
{
public static void main(String args [])
{
tirgon tir=new tirgon(3,4,5);
System.out.println("三角形的边是:"+tir.a+","+tir.b+","+tir.c+",");

}
}


2006-10-16 21:02
快速回复:this问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.046377 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved