일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- CSS
- 자바
- js
- 알고리즘
- 프로그래머스 JS
- greedy
- programmers
- 연습문제
- 백준
- 자바스크립트
- Baekjoon
- 코딩테스트 입문
- 이것이 코딩테스트다 with 파이썬
- Lv1
- SWEA
- 프로그래머스
- javascript
- React
- CLASS
- 코딩테스트
- 정렬
- Typescript
- 그리디
- 네트워크
- Java
- Next.js
- node.js
- Python
- Lv2
- bfs/dfs
- Today
- Total
목록CLASS (7)
개발야옹
public public은 default값이다. 생략이 가능하다. class User{ public name : string = "kim"; // public => 모든 자식들이 name을 이용가능하다. // public keyword는 생략 가능 default 값이다. // public private constructor(a : string){ this.name = a; } public 함수(){ console.log(this.name); }; } let user1 = new User("park"); user1.name = "Lee"; public은 축약을 제공하기도 한다. class User{ constructor( public name : string, public age : number){ } }..
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이라는 함수를 사용할 수 있다.
class class는 객체를 만들어내기위한 틀이다. class는 class 표현식과 class 선언식으로 만들어 낼 수 있다. 또한, 이전 문법으로는 function 과 this를 이용하여도 class를 만들었다. this는 instance로, 새로 생성되는 object들을 가리킨다. // function & this 를 이용한 class 선언 function Template(name : string, age : number, address : string ){ this.name : name; this.age : age; this.address : address; } var Yeonji = new Teplate("Yeonji", 22, "Suwon"); class Template{ constructor..