・class에 object{}를 assign시킬 수 있을까?

 class가 가지고있는 프로퍼티와 함수를 만족한다면, 오브젝트로 class에 assign할 수 있다. 다만, setter, getter의 경우 함수로써 오브젝트에 적히는 것이 아니고 setter명이 프로퍼티가 되어 assign의 대상이 됨에 주의 하자.



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
class PluginInfo {
    public nameVal: string;
 
    set name(val: string) {
        this.nameVal = val;
    }
 
    get name(): string {
        return this.nameVal;
    }
 
}
class Plugins {
        public channels: string;
        public logics: string;
        hello():void{
    }
}
 
const plugins: Plugins ={
    channels:"plugins-channels",
    logics:"plugins-logic",
    hello:function(){
        console.log('plugins-hello')
    }
};
 
/*
const pluginInfo: PluginInfo ={
    nameVal:"pluginInfo-nameVal"
};
PluginInfo은 nameVal라는 하나의 프로퍼티 밖에 안들고 있는 것 처럼 보이지만
setter로 지정되어 있는 name도 선언해주지 않으면
Property 'name' is missing in type '{ nameVal: string; }' but required in type 'PluginInfo'.라는 오류가 난다.
 */
 
 
const pluginInfo: PluginInfo ={
    nameVal:"pluginInfo-nameVal",
    name:"pluginInfo-name"
};
 
console.log(plugins.logics);
console.log(pluginInfo.nameVal);
cs












































































































































































































































































































































































































+ Recent posts