4 Star 0 Fork 0

夜莺和风/GitTest

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Product.java 1.25 KB
一键复制 编辑 原始数据 按行查看 历史
夜莺和风 提交于 2021-12-21 18:28 . 测试日志
package com.kaoshi.one.demo3;
public class Product {
private String store;
private String name;
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Product product = (Product) o;
if (store != null ? !store.equals(product.store) : product.store != null) return false;
return name != null ? name.equals(product.name) : product.name == null;
}
@Override
public int hashCode() {
int result = store != null ? store.hashCode() : 0;
result = 31 * result + (name != null ? name.hashCode() : 0);
return result;
}
@Override
public String toString() {
return "Product{" +
"store='" + store + '\'' +
", name='" + name + '\'' +
'}';
}
public String getStore() {
return store;
}
public void setStore(String store) {
this.store = store;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Product(String store, String name) {
this.store = store;
this.name = name;
}
public Product() {
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/RHCSS/GitTest.git
git@gitee.com:RHCSS/GitTest.git
RHCSS
GitTest
GitTest
master

搜索帮助