第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

java 構(gòu)造函數(shù),其參數(shù)具有最大值

java 構(gòu)造函數(shù),其參數(shù)具有最大值

白板的微信 2023-09-06 17:14:22
從Java開始,我希望構(gòu)造函數(shù)中的參數(shù)之一在創(chuàng)建時(shí)不超過某個(gè)值。舉個(gè)例子 :public class Vehicule {    protected String immat;    protected int poidsVide;    protected int charge;    protected int chargeMax;    Vehicule(String immat, int poidsVide, int charge) {        this.immat = immat;        this.poidsVide = poidsVide;        this.charge = charge;        this.chargeMax = 10000;   }}我不希望任何對(duì)象實(shí)例化為“charge”優(yōu)于“chargeMAx”,我應(yīng)該怎么做?嘗試了幾種選項(xiàng),到目前為止沒有任何效果。感謝您的幫助。
查看完整描述

1 回答

?
拉丁的傳說

TA貢獻(xiàn)1789條經(jīng)驗(yàn) 獲得超8個(gè)贊

首先,您的 chargeMax 似乎是一個(gè)常量值,不需要在構(gòu)造函數(shù)中接收其值(10000)。您可以直接在其字段聲明中執(zhí)行此操作。


其次,您可以在構(gòu)造函數(shù)中添加一些邏輯。該邏輯取決于您的需要。當(dāng)構(gòu)造函數(shù)接收到大于 chargeMax 的值時(shí),您可以自動(dòng)使 charge 接收 chargeMax。


例如:


public class Vehicle {

    protected String immat;

    protected int poidsVide;

    protected int charge;

    protected static final int CHARGE_MAX = 10000; // this is a constant


    Vehicle(String immat, int poidsVide, int charge) {

        this.immat = immat;

        this.poidsVide = poidsVide;


        if (charge > CHARGE_MAX){

          this.charge = CHARGE_MAX;

        }

        else {

          this.charge = charge;

        }

    }


}

另一個(gè)想法是當(dāng) Vehicle 收到一些不需要的值時(shí)拋出異常:


Vehicle(String immat, int poidsVide, int charge) {

    this.immat = immat;

    this.poidsVide = poidsVide;


    if (charge > CHARGE_MAX){

      throw new IllegalArgumentException("Charge cannot be bigger than " + CHARGE_MAX);

    }

    else {

      this.charge = charge;

    }

}


查看完整回答
反對(duì) 回復(fù) 2023-09-06
  • 1 回答
  • 0 關(guān)注
  • 143 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)