typeof与instanceof

作者:追风剑情 发布于:2018-11-16 11:28 分类:TypeScript

示例

  1. class A {public age: number}
  2. class B {
  3. //定义属性name
  4. private _name: string;
  5. public get name() {
  6. return this._name;
  7. }
  8. public set name(value: string) {
  9. this._name = value;
  10. }
  11. }
  12.  
  13. function checkInstanceof(value: A | B)
  14. {
  15. if (value instanceof A) {
  16. console.log("instanceof A");
  17. }
  18. if (value instanceof B) {
  19. console.log("instanceof B");
  20. }
  21. //遍历对象上的所有属性
  22. for (let key in value) {
  23. if (value.hasOwnProperty(key)) {
  24. console.log("own property: "+key);
  25. }else{
  26. console.log("prototype: "+key);
  27. }
  28. }
  29. }
  30.  
  31. function checkTypeof(value: number|string|boolean|symbol)
  32. {
  33. if (typeof value === "number") {
  34. console.log("number");
  35. }
  36. if (typeof value === "string") {
  37. console.log("string");
  38. }
  39. if (typeof value === "boolean") {
  40. console.log("boolean");
  41. }
  42. if (typeof value === "symbol") {
  43. console.log("symbol");
  44. }
  45. }
  46.  
  47. checkInstanceof(new A())
  48. checkInstanceof(new B())
  49.  
  50. checkTypeof(5)
  51. checkTypeof("sss")
  52. checkTypeof(true)
  53.  
  54. console.log("遍历字面量")
  55. let obj = {name: "xxx", age: 12};
  56. for (let key in obj) {
  57. if (obj.hasOwnProperty(key)) {
  58. console.log("own property: "+key);
  59. }else{
  60. console.log("prototype: "+key);
  61. }
  62. }
  63.  
  64. console.log("遍历函数对象")
  65. function fun1()
  66. {
  67. this.firstName = "a";
  68. }
  69. fun1.prototype.secondName = "b";
  70. let obj1 = new fun1();
  71. for (let key in obj1) {
  72. if (obj1.hasOwnProperty(key)) {
  73. console.log("own property: "+key);
  74. }else{
  75. console.log("prototype: "+key);
  76. }
  77. }

运行测试

111.png

标签: TypeScript

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号