// 类可以扩展其他类,一个类可以继承另一个类的属性和方法;classAnimal{name:string;constructor(theName:string){this.name = theName;}move(distanceInMeters:number=0){console.log(`${this.name} moved ${distanceInMeters}m.`);}}classSnkeextendsAnimal{constructor(name:string){super(name);}move(distanceInMeters =5){console.log('Slithering...');super.move(distanceInMeters);}}let sam =newSnake('Sammy the Python');
sam.move();// Snke 类扩展了 Animal 类,并且重写了 move 方法.
类-公共,私有与受保护修饰符
// TS 中的成员默认是公共的,也可以用 private 修饰符将成员标记为私有的:classAnimal{private name:string;constructor(theName:string){this.name = theName;}}newAnimal('Cat').name;// 错误: name 是私有的// 可以使用 protected 修饰符声明受保护的成员,这些成员只能在类本身及其子类中访问:classPerson{protected name:string;// 受保护的成员,只能在类本身及其子类访问constructor(name:string){this.name = name;}}classEmployeeextendsPerson{private department:string;constructor(name:string, department:string){super(name);this.department = department;}getElevatorPitch(){return`Hello, my name is ${this.name} and I work in ${this.department}.`}}let howard =newEmployee('Howard','Sales');console.log(howard.getElevatorPitch());//有效console.log(howard.name);// 错误
类-readonly 修饰符
// readonly 关键字将属性设置为只读classOctopus{readonly name:string;readonly numberOfLegs:number=0;constructor(theName:string){this.name = theName;}}let dad =newOctopus('Man width the 8 strong legs');
dad.name ='Man with the 3';// 错误 name是只读的;
类-存取器
// 支持通过 get 和 set 关键字来定义存取器classEmployee{private _fullName:string;// 设置私有属性getfullName():string{returnthis._fullName;}setfullName(newName:string){this._fullName = newName;}}let employee =newEmployee();
employee.fullName ='Bob Smith';console.log(employee.fullName)// Employee 类有一个私有属性 _fullName, 并且通过存取器来设置和获取它的值。
函数-(和JavaScript函数类似,但在参数和返回类型上提供了更多类型的检查)
函数类型
// 为函数的参数和返回值指定类型functionadd(x:number, y:number):number{return x + y;}letmyAdd:(x:number, y:number)=>number=function(x:number, y:number):number{return x + y;}
interfaceNamed{name:string;}classPerson{name:string;}let p: Named;
p =newPerson();// 正确 因为 Person 有一个兼容的 name 属性
类型兼容性-函数兼容性
letx=(a:number)=>0;lety=(b:number, s:string)=>0;y = x;// OK
x = y;// Err
高级类型
TypeScript 提供了许多高级类型操作,可以在编辑复杂类型定义时提供更强的灵活性
高级类型-交叉类型
// 交叉类型 & 是将多个类型合并为一个类型functionextend<T,U>(first:T, second:U):T&U{let result =<T&U>{};for(let id in first){(result asany)[id]=(first asany)[id]}for(let id in second){if(!result.hasOwnProperty(id)){(result asany)[id]=(second asany)[id];}}return result;}let x =extend({ a:'hello'},{ b:42});let a = x.a;// stringlet b = x.b;// number
typeName=string;typeNameResolver=()=>string;typeNameOrResolver= Name | NameResolver;functiongetName(n: NameOrResolver): Name {if(typeof n ==='string'){return n;}else{returnn();}}
高级类型-字面量类型
字面量类型约束一个变量的值只能是某个特定的值
typeEasing='ease-in'|'ease-out'|'ease-in-out';classUIElement{animate(dx:number, dy:number, easing: Easing){if(easing ==='ease-in'){// do something...}elseif(easing ==='ease-out'){// do something...}elseif(easing ==='ease-in-out'){// do something}else{thrownewError('参数必须是ease-in, ease-out,ease-in-out')}}}let button =newUIElement();
button.animate(0,0,'ease-in');// ok
button.animate(0,0,'unesay');// error
一.UnityEngine命名空间
1.[Header(string)]
inspector面板上给显示的字段上加一个描述
通常情况下,用于在 Inspector 窗口中创建字段的逻辑分组
public class AttributeTest : MonoBehaviour
{[Header("public_field_num")]public int num;
}2.[Tool…