比如string a=new a().getid();后续怎么操作new a()这个对象
给a一个引用变量不就行了,以后要用的对象,没必要去省一个变量。
var c = new a();string b = c.getid();var e = c............类似写法就可以了