java ,arrayList,怎么输出一个对象啊
请教一下啊,下面这个程序,怎么在spxx()方法里面用System.out.println(aa1.get(i));输出一个对象啊importjava.io.*;impo...
请教一下啊,
下面这个程序,怎么在spxx()方法里面用
System.out.println(aa1.get(i));输出一个对象啊
import java.io.*;
import java.util.*;
public class L1 {
public static void main(String []args)throws Exception{
Spgl shipin=new Spgl();//ArrayList也new出来
BufferedReader sr=new BufferedReader(new InputStreamReader(System.in));
while(true){
System.out.println("添加食品请按1");System.out.println("查看食品请按2");
String str=sr.readLine();
if(str.equals("1")){
System.out.println("请输入食品编号"); String bh=sr.readLine();
System.out.println("请输入食品名称"); String mc=sr.readLine();
System.out.println("请输入食品价格"); float jg=Float.parseFloat(sr.readLine());
Sp sp=new Sp(bh,mc,jg);
shipin.addsp(sp);}
else if(str.equals("2")){
System.out.println("请输入要查看的食品的编号");
String bh=sr.readLine();
shipin.spxx(bh); }
else if(str.equals(0)){
System.out.println("谢谢使用,再见");
System.exit(0); } } } }
class Spgl{
private ArrayList aa=null;
Spgl(){
aa=new ArrayList(); }
public void addsp(Sp sp){
aa.add(sp);
System.out.println("添加食品成功");}
public void spxx(String bh){//食品信息2222
int i;
for(i=0;i<aa.size();i++){//查询食品,
System.out.println(aa.get(i));
Sp sp=(Sp)aa.get(i);
if(sp.getBianhao().equals(bh)){
System.out.println("该食品的信息为:");
/*
怎么在spxx方法里面用 System.out.println(aa1.get(i));输出一个对象啊
*/
break; } }
} } 展开
下面这个程序,怎么在spxx()方法里面用
System.out.println(aa1.get(i));输出一个对象啊
import java.io.*;
import java.util.*;
public class L1 {
public static void main(String []args)throws Exception{
Spgl shipin=new Spgl();//ArrayList也new出来
BufferedReader sr=new BufferedReader(new InputStreamReader(System.in));
while(true){
System.out.println("添加食品请按1");System.out.println("查看食品请按2");
String str=sr.readLine();
if(str.equals("1")){
System.out.println("请输入食品编号"); String bh=sr.readLine();
System.out.println("请输入食品名称"); String mc=sr.readLine();
System.out.println("请输入食品价格"); float jg=Float.parseFloat(sr.readLine());
Sp sp=new Sp(bh,mc,jg);
shipin.addsp(sp);}
else if(str.equals("2")){
System.out.println("请输入要查看的食品的编号");
String bh=sr.readLine();
shipin.spxx(bh); }
else if(str.equals(0)){
System.out.println("谢谢使用,再见");
System.exit(0); } } } }
class Spgl{
private ArrayList aa=null;
Spgl(){
aa=new ArrayList(); }
public void addsp(Sp sp){
aa.add(sp);
System.out.println("添加食品成功");}
public void spxx(String bh){//食品信息2222
int i;
for(i=0;i<aa.size();i++){//查询食品,
System.out.println(aa.get(i));
Sp sp=(Sp)aa.get(i);
if(sp.getBianhao().equals(bh)){
System.out.println("该食品的信息为:");
/*
怎么在spxx方法里面用 System.out.println(aa1.get(i));输出一个对象啊
*/
break; } }
} } 展开
3个回答
展开全部
那就在你要输出的对象类里覆盖函数toString,然后直接System.out.println(对象)姐可以了
追问
那toString方法怎么重写啊
追答
function String toString()
{
StringBuffer sb = new StringBuffer();
sb.append("对象..信息:【");
sb.append("属性名=" + this.属性);
....
sb.append("】");
return sb.toString();
}
具体要输出的格式自己定,我这只是个例子
展开全部
System.out.println("食品编号:" + sp.getBianhao());
System.out.println("食品名称:" + sp.getMingcheng());
System.out.println("食品价格:" + sp.getJiage());
System.out.println("食品名称:" + sp.getMingcheng());
System.out.println("食品价格:" + sp.getJiage());
追问
这是一个属性一个属性输出的啊,不可以直接输出对象吗,
追答
重写sp对象的输出方法。见楼下的解答
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
重写你要读的那个对象的tostring方法呗
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询