求大家帮忙做一道JAVA题,谢谢各位了..

main()中生成类2的两个对象,调用类1的某个方法,传入该二对象参数,且打印该二对象。(Hashcode).没分了不好意思呵呵不过先谢谢了... main()中 生成类2的两个对象,调用 类1的某个方法,传入该二对象参数,且打印该二对象。
(Hashcode). 没分了 不好意思 呵呵 不过先谢谢了
展开
 我来答
匿名用户
2009-12-15
展开全部
public class person {
public person( car jeep,car bmw){
System.out.println("I have two cars,they are:");
jeep.toString();
bmw.toString();
}
public static void main(String args[]){
car jeep = new car("blue","mazdaz");
car bmw = new car("red","bmw");
person p = new person(jeep,bmw);

}
}

class car{
String colors;
String brand;
public car(String colors,String brand){
this.colors = colors;
this.brand = brand;
}
String toString(){
System.out.println("colors: "+this.colors+" ,brand"+this.brand);
}
}

呵呵,我理解的是这个意思,不过没有在编译器上编译过,可能会有点小错误。你试试~~
IT小人物
2009-12-13 · TA获得超过453个赞
知道小有建树答主
回答量:977
采纳率:0%
帮助的人:329万
展开全部
public static void main(String args[])
{
类2 对象名1(参数),对象名2(参数);
类1.方法名;
}
你两个类是怎么定义的,是用构造函数的话上面可能可以。不然就调用输入参数的方法,调法如:类。方法名(参数);
这些都是基本的知识啊,你是刚开始学的吗?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式