일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Lv1
- 알고리즘
- node.js
- Java
- 자바스크립트
- 그리디
- Baekjoon
- bfs/dfs
- 연습문제
- greedy
- Lv2
- 코딩테스트
- Python
- 프로그래머스
- 이것이 코딩테스트다 with 파이썬
- 자바
- React
- CSS
- 프로그래머스 JS
- js
- 네트워크
- Typescript
- 정렬
- SWEA
- 코딩테스트 입문
- javascript
- 백준
- Next.js
- programmers
- CLASS
Archives
- Today
- Total
개발야옹
[ Typescript ] class type 지정 본문
class type 지정
! constructor함수는 return type이 항상 object이기 때문에 return type을 지정하면 안된다.
class Person{
let name : string;
constructor(a : string){
this.name = a;
}
};
Person.prototype.greet = function(a : sring) : void{
console.log("hello" + a);
}
let Minseo = new Person("Minseo");
console.log(Minseo.name); // result : Minseo
// Person의 자식들은 모두 greet이라는 함수를 사용할 수 있다.
728x90
'Language > Typescript' 카테고리의 다른 글
[ Typescript ] rest parameter type지정 (2) | 2021.12.18 |
---|---|
[ Typescript ] interface (0) | 2021.12.18 |
[ Typescript ] Litertal Types & as const (2) | 2021.12.17 |
[ Typescript ] type 선언 & type allias & type extend & 함수 type allias (0) | 2021.12.17 |
[ Typescript ] Typescript 시작하기 (0) | 2021.12.17 |