java202302java学习笔记第十三天-对象数组练习2

produce

package javalearn.ArrayLearn;
public class Produce {
private String id;
private String name;
private double price;
private int count;
public Produce() {
}
public Produce(String id, String name, double price, int count) {
this.id = id;
this.name = name;
this.price = price;
this.count = count;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public double getPrice() {
return price;
}
public void setPrice(double price) {
this.price = price;
}
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
}

test

package javalearn.ArrayLearn;
public class ProduceTest {
public static void main(String[] args) {
Produce[] arr=new Produce[3];
Produce g1=new Produce("001","华为手机",5999,100);
Produce g2=new Produce("002","苹果手机",6999,100);
Produce g3=new Produce("002","点手机",5999,100);
arr[0]=g1;
arr[1]=g2;
arr[2]=g3;
for (int i = 0; i < arr.length; i++) {
System.out.println(arr[i]);
}
}
}

posted @   前端导师歌谣  阅读(22)  评论(0编辑  收藏  举报  
相关博文:
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· SQL Server 2025 AI相关能力初探
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
点击右上角即可分享
微信分享提示