typescript學習筆記

2021-09-08 16:37:22 字數 409 閱讀 1727

1,ts是js的超集,ts是強型別語言。ts比js入門更難。ts的物件導向寫法比js更優雅。ts更適合團隊協作。

2,宣告變數篇。

3,宣告函式篇。

4,物件導向篇。

4.1,子類繼承父類 extends ,繼承多個介面 implements。

4.2,this表示當前物件,super表示父類物件。子類不寫construct預設繼承父類的例項和方法,子類super在建構函式中寫。

4.3,類的構成:例項屬性///例項方法///靜態方法:靜態方法可以返回靜態屬性,靜態成員只能使用類名.靜態方法進行訪問///靜態屬性///建構函式///

4.4,私有變數和靜態變數的區別:私有變數只能在該類中使用不能在其它類中使用;靜態變數是類變數,會預設給個值,靜態變數只需要類.值就能訪問。

5,綜合篇

Typescript學習筆記

物件導向特性 類類的宣告 用class關鍵字 加類名 class person 類宣告完之後就可以被例項化了,類相當於乙個模子.name string eat var p1 new person p1.name batman p1.eat var p2 new person p2.name supe...

TypeScript 學習筆記1

inte ces typescript 的 type checking 專注於值的 shape inte ces的作用在於命名值使其便於檢測,同時作為軟體與軟體 軟體內部交流的工具。用於檢測,編譯成js的話沒有相應的語句 ts inte ce squareconfig function creats...

TypeScript 學習筆記2

class js物件導向模型是原型 es6有類和物件 這裡引入語法糖?來使用類 記三個例子 例子1 class animal move meters number 0 class snake extends animal move meters 5 class horse extends anima...