π Chapter 18: μΈλΆ μ¬ν μ²λ¦¬
νμβ
- νμμ μ΄λ€ κ°λ μ μλ³νλ λ° μ¬μ©νλ μμΉμ§μ μ νμ μΌλ‘, μ½λ κ·λͺ¨κ° 컀μ§μ λ°λΌ κ΄λ ¨ μλ μ κΈ°λ₯μ μ§μ΄λ£μ κ³³μΌλ‘ λ§λ ¨ν΄μ€λ€.
public class Item {
public final String identifier;
public final int stopPrice;
public Item(String identifier, int stopPrice) {
this.identifier = identifier;
this.stopPrice = stopPrice;
}
// μ΄ν equals(), hashCode(), toString()
}