免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1503 | 回复: 4
打印 上一主题 下一主题

帮忙看一个程序和编译错误,帮忙解释一下 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2003-06-30 11:01 |只看该作者 |倒序浏览
package c03;
import java.io.*;
class sample {
       sample(sample t1){
       System.out.println(t1);
       }
}
public class thistest{
  
       public static void main(String args[]){
       thistest t=new sample(this);
       }
}


E:\123>;javac c03/thistest.java
c03/thistest.java:11: non-static variable this cannot be referenced from a static context
       thistest t=new sample(this);
                             ^
c03/thistest.java:11: cannot resolve symbol
symbol  : constructor sample  (c03.thistest)
location: class c03.sample
       thistest t=new sample(this);
                  ^
2 errors

E:\123>;

论坛徽章:
0
2 [报告]
发表于 2003-06-30 11:32 |只看该作者

帮忙看一个程序和编译错误,帮忙解释一下


  1. package c03;
  2. import java.io.*;
  3. class sample {
  4. sample(sample t1){
  5. System.out.println(t1);
  6. }
  7. }
  8. public class thistest{

  9. public static void main(String args[]){
  10. thistest t=new sample(this);
  11. }
  12. }

复制代码


错误是在所难免的

thistest t=new sample(this);
这句话最少能产生3个错误
1.this是自当前对象的实例,但是在static方法里不存在当前对象一说,所以不能引用this

2.sample不是thistest 或其子类
不能用赋值

3。sample不存在sample(thistest)的构建器!!

你想达到什么效果??说一下!!

论坛徽章:
0
3 [报告]
发表于 2003-06-30 13:24 |只看该作者

帮忙看一个程序和编译错误,帮忙解释一下

原帖由 "rollingpig" 发表:

错误是在所难免的

thistest t=new sample(this);
这句话最少能产生3个错误
1.this是自当前对象的实例,但是在static方法里不存在当前对象一说,所以不能引用this

2.sample不是thistest 或其子类
不能用?.........
   

我对this的使用感到迷惑,就想写个测试程序看看打印出什么东西来:)
没有想到离开书本写一个程序,会有这么多错误。

论坛徽章:
0
4 [报告]
发表于 2003-06-30 13:43 |只看该作者

帮忙看一个程序和编译错误,帮忙解释一下

try this:

  1. public class TestThis{
  2. String name="";
  3. public TestThis(){}

  4. public TestThis(String name){
  5. this.name="in the instance:"+name;
  6. System.out.println(name);
  7. System.out.println(this.name);
  8. }

  9. public TestThis(TestThis t){
  10. this(t.name);
  11. }

  12. public static void main(String a[]){
  13. TestThis t1= new TestThis("parameter");
  14. TestThis t2= new TestThis(t1);
  15. }
  16. }

复制代码

论坛徽章:
0
5 [报告]
发表于 2003-06-30 15:05 |只看该作者

帮忙看一个程序和编译错误,帮忙解释一下

E:\123>;java TestThis
parameter
in the instance:parameter
in the instance:parameter
in the instance:in the instance:parameter

谢谢
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP