gpt4 book ai didi

java - 构造函数未定义

转载 作者:行者123 更新时间:2023-12-02 05:41:03 26 4
gpt4 key购买 nike

包在.citydoor.imports.catalog.tools;

公共(public)类 ProductVo {

private String product_id;
private String product_name;

public void ProductVo(String i, String n){

product_id = i;
product_name = n;

}


public String getProductId(){
return this.product_id;
}

public void setProductId(String product_id){
this.product_id = product_id;
}

public String getProductName(){
return this.product_name;
}

public void setProductname(String product_name){
this.product_name = product_name;
}

}

包在.citydoor.imports.catalog.tools;

导入java.util.ArrayList;

公共(public)类 CatFeedBean {

ArrayList<ProductVo> parsedList = new ArrayList<ProductVo>();
ArrayList<PriceVo> priceList = new ArrayList<PriceVo>();
ArrayList<SkuVo> SkuList = new ArrayList<SkuVo>();

String[] columns = arryLines.split("/");

//String[] columns;

String productid = columns[0];
String productname = columns[1];
String skuid = columns[2];
String price = columns[3];

**ProductVo productObj = new ProductVo(productid,productname);**

//parsedList.add(productObj);
//SkuVo skuObj = new SkuVo(skuid);
//SkuList.add(skuObj);
//PriceVo priceObj = new PriceVo(price);
//priceList.add(priceObj);

}

在粗体行中,我收到错误 - “构造函数 ProductVo(String, String) 未定义”。

最佳答案

这不是一个构造函数——它是一个返回 void 的方法。

public void ProductVo(String i, String n){

删除 void 以使其成为构造函数。您将其命名为与类相同的名称,这很好,但是构造函数没有声明返回类型,甚至没有声明返回类型。

public ProductVo(String i, String n){

关于java - 构造函数未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24518116/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com