打字稿无法设置未定义的属性

时间:2019-01-25 03:07:30

标签: typescript

有人可以解释为什么您不能在Typescript中做到这一点吗?

this.obj.id = 1;
this.obj.str = 'This is string';

但是您可以这样做:

this.obj = { id: 1, str: 'This is string'};

1 个答案:

答案 0 :(得分:1)

这不是你不能做的事情,而是你做错了。 参见Stackblitz Demo

我可以这样定义它:

BufferedReader br = new BufferedReader(new FileReader(path))