博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
angular 2 - 003 typescript
阅读量:6516 次
发布时间:2019-06-24

本文共 319 字,大约阅读时间需要 1 分钟。

213419-20171228133444913-1263654105.png

var book: string = "hellp angular 2";var num: number = 123;function lg (msg :string): void{  console.log(msg)}

类和接口

interface Shape{  area(): number;}class Rectangle implements Shape{  constructor(      private width: number.       private length: number  ){}//实现方法  area(){    return this.width  * this.length;  }}

装饰器

 

213419-20171228133946334-738994095.png

转载地址:http://xaofo.baihongyu.com/

你可能感兴趣的文章
express
查看>>
渐进式的脚本加载
查看>>
Python参数传递(传值&传引用)
查看>>
在windows上如何安装python web引擎jinja2
查看>>
移动短信网关模拟器
查看>>
Python爬虫学习笔记之微信宫格验证码的识别(存在问题)
查看>>
Linux下的进程间通信(三)
查看>>
dva框架的下拉菜单的父子关系
查看>>
mysql 创建用户,授权
查看>>
基于Redis实现分布式锁
查看>>
ubuntu14.04+FSL5.0 安装
查看>>
maven mirror
查看>>
NewSQL 介绍
查看>>
9.2ArrayList 集合 案例,学生管理系统
查看>>
修改版的echojs支持iScroll
查看>>
20181023-2 贡献分配
查看>>
CentOS 7 关闭启动防火墙
查看>>
Vue-选项卡切换
查看>>
linux网络命令
查看>>
nodejs ejs 请求路径和静态资源文件路径
查看>>