有人可以解释为什么您不能在Typescript中做到这一点吗?
this.obj.id = 1;
this.obj.str = 'This is string';
但是您可以这样做:
this.obj = { id: 1, str: 'This is string'};
答案 0 :(得分:1)
这不是你不能做的事情,而是你做错了。 参见Stackblitz Demo
我可以这样定义它:
BufferedReader br = new BufferedReader(new FileReader(path))