typescript 学习

typescript将在不久的将来从前端大一统的趋势中脱颖而出成为主流编译器。学习ts对前端开发人员来说是不可或缺的。同时,也要抓紧学习es2015/6/7。ts和es6并不是对立的。而是相辅相成的。ts的竞争和打击对象实质上是babel……

官方资料

 # 官方地址:
 https://www.tslang.cn

 # github:
 https://github.com/Microsoft/TypeScript

 # 官方文档
 http://www.typescriptlang.org/docs/handbook/release-notes/typescript-2-2.html

安装与编译:

# 安装
npm install -g typescript
# 编译
tsc helloworld.ts

 

demo1:支持Commonjs规范

# helloworld.ts
import app from './app'
console.log(app)# app.ts
export default {sayHello () {console.log("Hello World!!")}
}

执行tsc helloworld.ts

控制台执行:node helloworld

控制台输出:Hello World!!

 

 

demo2: 快速扫基础篇

# 基础类型
let isDone: boolean = false;
let decLiteral: number = 6;
let name: string = "bob";# 模板字符串 和 内嵌表达式
let name: string = `Gene`;
let age: number = 37;
let sentence: string = `Hello, my name is ${ name }.I'll be ${ age + 1 } years old next month.`;

# 数组 与 泛型数组
let list: number[] = [1, 2, 3];
let list: Array<number> = [1, 2, 3];# 元组
let x: [string, number];
x = ['hello', 10]; // OK
x = [10, 'hello']; // Error
console.log(x[0].substr(1)); // OK
console.log(x[1].substr(1)); // Error, 'number' does not have 'substr'
x[3] = 'world'; // OK
onsole.log(x[1].toString()); // OK, 'string' 和 'number' 都有 toString
x[6] = true; // Error, 布尔不是(string | number)类型

 

demo3: 快速扫基础篇2

# 枚举
// 默认情况下,从 0 开始为元素编号
enum Color {Red, Green, Blue};
let c: Color = Color.Green; // 1enum Color {Red = 1, Green, Blue};
let c: Color = Color.Green; // 2enum Color {Red = 1, Green = 2, Blue = 4};
let c: Color = Color.Green; // 2//查找相应的名字
enum Color {Red = 1, Green, Blue};
let colorName: string = Color[2];
console.log(colorName) // Green

# 任意值
let notSure: any = 4;
notSure = "maybe a string instead";
notSure = false; // okay, definitely a boolean

let list: any[] = [1, true, "free"];
list[1] = 100;# void
function warnUser(): void {alert("This is my warning message");
}

 

demo4 : ts的核心之一 接口

# 接口初探
function printLabel(labelledObj: { label: string }) {console.log(labelledObj.label);
}
let myObj = { size: 10, label: "Size 10 Object" };
printLabel(myObj);  // Size 10 Object

类型检查器会查看 printLabel 的调用。 printLabel 有一个参数,并要求这个对象参数有一个名为 label 类型
为 string 的属性。 需要注意的是,我们传入的对象参数实际上会包含很多属性,但是编译器只会检查那些必需
的属性是否存在,并且其类型是否匹配。// 将接口单独抽离出来
interface LabelledValue {label: string;
}
function printLabel(labelledObj: LabelledValue) {console.log(labelledObj.label);
}
let myObj = {size: 10, label: "Size 10 Object"};
printLabel(myObj);类型检查器不会去检查属性的顺序,只要相应的属性存在并且类型也是对的就可以。# 接口可选属性
interface SquareConfig {color?: string;width?: number;
}function createSquare(config: SquareConfig): {color: string; area: number} {let newSquare = {color: "white", area: 100};if (config.color) {newSquare.color = config.color;}if (config.width) {newSquare.area = config.width * config.width;}return newSquare;
}
let mySquare = createSquare({color: "black"}); // { color: 'black', area: 100 }

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/541631.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

计算机中央处理器cpu_中央处理器(CPU)| 计算机科学组织

计算机中央处理器cpu中央处理器(CPU) (Central Processing Unit (CPU)) The CPU is the brain of the computer system. It works as an administrator of a system. CPU是计算机系统的大脑。 它以系统管理员的身份工作。 All the operations within the system are supervised…

计算机应用基础专2020春,计算机应用基础(专)(专,2020春)(20200831130023).pdf

计算机应用基础(专)(专&#xff0c; 2020 春)使用 " 格式刷”按钮&#xff0c;可以进行 ___________操作。选择一项&#xff1a;a. 复制文本的格式b. 删除文本c. 复制文本d. 保持文本你的回答正确正确答案是&#xff1a;复制文本的格式在 Word 的文档中插入复杂的数学公式…

computed set 自定义参数_深入理解vmodel之自定义组件用法

根据上一篇《深入理解 v-model 之表单用法》基本对 v-model 有了比较深的理解&#xff0c;接下来我们看看它如何在自定义组件中使用。首先&#xff0c;我们知道下面两个用法等价的&#xff1a;<input v-model"msg" /><input :value"msg" input&qu…

01json转字符串

/** * json转字符串声明 */ (NSString *)jsonToString:(NSDictionary *)dic; /** * json转字符串实现 */ (NSString *)jsonToString:(NSDictionary *)dic { if(!dic){ return nil; } NSData *jsonData [NSJSONSerialization dataWithJSONObject:dic options:NSJSONWriting…

AYUSH的完整形式是什么?

AYUSH&#xff1a;阿育吠陀&#xff0c;瑜伽和自然疗法&#xff0c;乌纳尼&#xff0c;悉达多和顺势疗法 (AYUSH: Ayurvedic, Yoga and Naturopathy, Unani, Siddha and Homeopathy) AYUSH is an abbreviation of Ayurvedic, Yoga and Naturopathy, Unani, Siddha, and Homeopa…

大班科学电子计算机,计算器教案

计算器的认识和简单应用教学内容&#xff1a;义务教育六年制小学第九册第二单元第42页。教学目标&#xff1a;1、通过学生自主探究&#xff0c;掌握计算器的使用方法&#xff0c;并能够用计算器进行简单的计算。2、借助计算器解决生活中的数学问题、探索数学规律&#xff0c;体…

arraylist能否接收强转类型_ArrayList 源码解析

点击上方"IT牧场"&#xff0c;选择"设为星标"技术干货每日送达&#xff01;前言 JDK源码解析系列文章&#xff0c;都是基于JDK8分析的&#xff0c;虽然JDK14已经出来&#xff0c;但是JDK8我还不会&#xff0c;我…类图 实现了RandomAccess接口&#xff0c;…

exit c+_C / C ++中的exit(0)vs exit(1)与示例

exit cexit() is a library function in C/C programming language, it is used to terminate the calling process (function) immediately i.e. we can say it is used for the normal program termination and also perform the several cleanup steps. exit()是C / C 编程语…

校园计算机网络系统,校园计算机网络系统

一、校园网的基本概念基本功能&#xff1a;数据交换、资源共享&#xff0c;这里所指的数据包括各种信息&#xff0c;基本组成和结构&#xff1a;基本网络由网络网络的分类&#xff1a;有多种分类方法&#xff0c;按规模可分为局域网、区域网、&127;广域网。局域网服务范围一…

mc有什么红石机器人_我的世界10月考试!来测测你的MC成绩吧~

考试规则&#xff1a;本次考试为闭卷考试&#xff0c;考生需要在30分钟内完成试卷。试卷总分为100分&#xff0c;其中包括单项选择题50分&#xff0c;多项选择题20分&#xff0c;判断题30分。考试内容包括《我的世界》手游1.11.0及以上版本在不添加任何模组的情况下的所有游戏内…

130、 Android OkHttp完全解析(转载)

完全解析&#xff1a;http://blog.csdn.net/lmj623565791/article/details/47911083 从原理角度解析http文件上传 http://blog.csdn.net/lmj623565791/article/details/23781773 https://github.com/hongyangAndroid/okhttputils

json转string示例_C.示例中的String.Copy()方法

json转string示例C&#xff03;String.Copy()方法 (C# String.Copy() Method) String.Copy() method is used to copy a string to new string object, it returns a new instance of String with the same value as given string. String.Copy()方法用于将字符串复制到新的字符…

自定义分页 html,MVC 自定义HtmlHelper帮助类型之分页

方法一&#xff1a;在项目中增加App_Code文件夹&#xff0c;新增一个MyHtmlper.cshtml视图文件写入代码&#xff1a;helper Pagger(int pageIndex, int pageCount){for (int i 1; i < pageCount; i){if (i ! pageIndex){(i)}else{i}}}新增一个HomeControllerpublic class H…

vue 对象继承_Vue2.0中组件的继承与扩展是什么

Vue2.0中组件的继承与扩展是什么发布时间&#xff1a;2020-12-07 14:04:09来源&#xff1a;亿速云阅读&#xff1a;100作者&#xff1a;小新小编给大家分享一下Vue2.0中组件的继承与扩展是什么&#xff0c;相信大部分人都还不怎么了解&#xff0c;因此分享这篇文章给大家参考一…

stack示例_C.示例中的Stack.Clone()方法

stack示例C&#xff03;Stack.Clone()方法 (C# Stack.Clone() method) Stack.Clone() method is used to create a shallow copy of the stack. Stack.Clone()方法用于创建堆栈的浅表副本。 Syntax: 句法&#xff1a; Object Stack.Clone();Parameters: None 参数&#xff1a…

简述计算机图形的图形应用主要有哪些,5计算机图形学考试简答题复习.doc

5计算机图形学考试简答题复习计算机图形学考试简答题复习1、简述计算机动画的概念&#xff0c;它经历了哪几个阶段的发展&#xff1f;(2分)计算机动画是指采用图形与图像的处理技术&#xff0c;借助于编程或动画制作软件生成一系列的景物画面&#xff0c;其中当前帧是前一帧的部…

在图片中选定任意凸多边形制作掩膜程序MATLAB

function S get_convex_S(C,vx,vy) %该函数实现的功能为指定图像中多边形的顶点&#xff0c;返回属于该凸多边形中的所有像素点 %xv&#xff0c;yv为顶点坐标按照顺时针或者逆时针。vx(1) xv(end); yv(1) yv(end) %输入的C是结构&#xff0c;vx vy是数组存的是顶点坐标。 %输…

js console 输出到文件_Node.js核心入门

正文核心模块是Node.js的心脏&#xff0c;主要是有一些精简高效的库组成(这方面和Python有很大的相似之处)&#xff0c;为Node.js提供了基础的API。主要内容包括&#xff1a;Node.js核心入门(一)全局对象常用工具事件机制Node.js核心入门(二)文件系统访问HTTP服务器与客户端全局…

scala 当前日期_如何在Scala中检查当前日期和时间?

scala 当前日期Scala is a general-purpose programming language, which is majorly used for data manipulation. It has libraries and support for almost all different utilities that are important. One of the important things that are required while programming …

计算机科学考试大纲,计算机科学与技术考试大纲.doc

计算机科学与技术考试大纲计算机科学与技术专业本专业的专业课程考试为“计算机软件基础”和“计算机硬件基础”两门课程的组合试卷&#xff0c;卷面总分200分&#xff0c;时间150分钟&#xff0c;考试方式为笔试。考试可携带计数器&#xff0c;但禁止携带文曲星、商务通等带有…