从Java开始,我希望构造函数中的参数之一在创建时不超过某个值。举个例子 :
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;
}
}
我不希望任何对象实例化为“charge”优于“chargeMAx”,我应该怎么做?尝试了几种选项,到目前为止没有任何效果。
感谢您的帮助。
拉丁的传说
相关分类