TypeScript联合类型

作者:追风剑情 发布于:2018-11-15 17:57 分类:TypeScript

示例

  1. /**
  2. //不要为仅在某个位置上的参数类型不同的情况下定义重载
  3. function fn(x: number) {
  4. return "number类型"+x;
  5. }
  6. function fn(x: string) {
  7. return "string类型"+x;
  8. }
  9. */
  10.  
  11. //应该尽可能地使用联合类型
  12. function fn(x: number|string) {
  13. return "联合类型: "+x+"("+typeof(x)+")";
  14. }
  15.  
  16. console.log(fn(5));
  17. console.log(fn("ssss"));


运行测试

1111111.png

标签: TypeScript

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号