标题:[求助]java中构造函数的错误?
取消只看楼主
lgdcky
Rank: 2
等 级:论坛游民
威 望:5
帖 子:576
专家分:18
注 册:2006-8-5
结帖率:33.33%
 问题点数:0 回复次数:1 
[求助]java中构造函数的错误?
初学JAVA做了个程序
public class Fruits{
String name;
int quantity;
double price;
void Fruits(String name1,int quantity1,double price1){
name=name1;
quantity=quantity1;
price=price1;
}
void print (){
System.out.println("水果名称为"+name);
System.out.println("水果数量为"+quantity);
System.out.println("水果价格为"+price);
}
public static void main (String [] args){
Fruits fs= new Fruits("apple",20,1);
fs.print();
}
}
编译时程序总报错
cannot resolve symbol
symbol : constructor Fruits (java.lang.String,int,int)
location: class Fruits
Fruits fs= new Fruits("apple",20,1);
^
1 error
我怎么也找不到错误,这个怎么改才行啊????

[此贴子已经被作者于2006-8-5 16:08:29编辑过]

搜索更多相关主题的帖子: java Fruits 函数 构造 JAVA 
2006-08-05 16:06
lgdcky
Rank: 2
等 级:论坛游民
威 望:5
帖 子:576
专家分:18
注 册:2006-8-5
得分:0 
谢谢!问题解决了!!
谢谢!问题解决了!!

2006-08-05 17:43



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-82289-1-1.html




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

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