如何在構造函數中初始化值不能由對象傳遞並且我們可以從主方法傳遞它們的值?使用main方法初始化構造函數的值
class ex
{
int a,b;
ex()
{
this.a=b;
}
public static void main(String args[])
{
//here we pass the values to that consructor ex
ex obj=new ex();
}
}
那麼問題是什麼,這真的是JavaEE? –
請詳細說明實際問題 – theAlse