//1번. 인터페이스는 타입만 가지고 있는 반면 클래스는 실제 값과 타입을 모두 가질 수 있다. //2번.상속은 가능하지만 인스턴스화 할 수 없다. 상속받은 클래스 또한 인스턴스화 할 수 없다. class testA { protected constructor( public Name: string ) { } } const test1 = new testA("name1");//Constructor of class 'testA' is protected and only accessible within the class declaration. class testB extends testA {} const test2 = new testB("name2")//Constructor of class 'testA' is pr..