オブジェクトで値を渡すことができず、メインメソッドから値を渡すことができるように、コンストラクターで値を初期化する方法は?
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();
}
}