Topic: 为什么找不到符号?? |
Print this page |
1.为什么找不到符号?? | Copy to clipboard |
Posted by: 石头一言堂 Posted on: 2006-10-19 08:44 public class GongBei { public static void main(String args[]) { int t1,t2,a,b; int m=Integer.parseInt(args[0]); int n=Integer.parseInt(args[1]); a=m; b=n; t1= new Gong(a,b); t2= new myGong(a,b); System.out.println("gongyueshu: "+t1); System.out.println("gongbeishu: "+t2); } } ---------- JAVA编译 ---------- GongBei.java:10: 找不到符号 符号: 构造函数 Gong(int,int) 位置: 类 Gong t1= new Gong(a,b); ^ GongBei.java:11: 找不到符号 符号: 构造函数 myGong(int,int) 位置: 类 myGong t2= new myGong(a,b); ^ 2 错误 输出完成 (耗时: 4 秒) - 正常终止 |
2.Re:为什么找不到符号?? [Re: 石头一言堂] | Copy to clipboard |
Posted by: star123456789 Posted on: 2006-10-19 16:38 import 头文件--包含Gong、myGong类的文件 |
3.Re:为什么找不到符号?? [Re: 石头一言堂] | Copy to clipboard |
Posted by: q_yuan Posted on: 2006-10-20 13:02 你要么在代码中写一个Gong,myGong的类, 要么导入包含Gong、myGong的类 |
Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1 客服电话 18559299278 客服信箱 714923@qq.com 客服QQ 714923 |