vlambda博客
学习文章列表

《菜鸟教程》-TypeScript 命名空间

命名空间一个最明确的目的就是解决重名问题。

TypeScript 命名空间的定义与使用

TypeScript 中命名空间使用 namespace 来定义,语法格式如下:

 
   
   
 
  1. namespace SomeNameSpaceName {

  2. export interface ISomeInterfaceName { }

  3. export class SomeClassName { }

  4. }

以上定义了一个命名空间 SomeNameSpaceName,如果我们需要在外部可以调用 SomeNameSpaceName 中的类和接口,则需要在类和接口添加 export 关键字。要在另外一个命名空间调用语法格式为:

 
   
   
 
  1. SomeNameSpaceName.SomeClassName;

如果一个命名空间在一个单独的 TypeScript 文件中,则应使用三斜杠 /// 引用它,语法格式如下:

 
   
   
 
  1. /// <reference path = "SomeFileName.ts" />

嵌套命名空间

语法格式如下:

 
   
   
 
  1. namespace namespace_name1 {

  2. export namespace namespace_name2 {

  3. export class class_name { }

  4. }

  5. }

代码示例:

 
   
   
 
  1. namespace Car {

  2. export class Bicycle {

  3. color:string;

  4. }


  5. // namespace 嵌套

  6. export namespace ColorManager {

  7. export class Color {

  8. static getColors():string[]{

  9. return ['red', 'white', 'blud'];

  10. }

  11. }

  12. }

  13. }


  14. namespace Person {

  15. export class Student {

  16. runCar():void {

  17. const car = new Car.Bicycle();

  18. // 由于此时color并没有被赋值,所以是undefined

  19. console.log(`Student is running a ${car.color} car.`); // Student is running a undefined car.


  20. console.log(`想给车子加个颜色,从Car的颜色管理中心查看可选颜色:`);

  21. console.log(Car.ColorManager.Color.getColors()); // [ 'red', 'white', 'blud' ]

  22. }

  23. }


  24. const student = new Student();

  25. student.runCar();

  26. }












扫码关注