diff --git a/docs/uts/data-type.md b/docs/uts/data-type.md index 40254da167047b68b15fba0da1586e3eec8d58af..3ed73a080dc2f4ad8a8616333b1bbac4d49dcf73 100644 --- a/docs/uts/data-type.md +++ b/docs/uts/data-type.md @@ -486,7 +486,10 @@ let list: any[] = [1, true, "free"]; list[1] = 100; ``` -- 注意:在 TS 中可以将 null 赋值给 any 类型的变量,但是在 Swift 和 Kottlin 中,any 类型属于非空类型,也就是不能将 null 赋值给 any 类型的变量。因此 在 UTS 中 也不能将 null 赋值给 any 类型,以免编译失败。 +**注意** + +- 在 TS 中可以将 null 赋值给 any 类型的变量,但是在 Swift 和 Kottlin 中,any 类型属于非空类型,也就是不能将 null 赋值给 any 类型的变量。因此 在 UTS 中 也不能将 null 赋值给 any 类型,以免编译失败。 +- 4.18版本起uts在编译到js时,any类型会包含null类型。 ## null类型 @null diff --git a/docs/uts/type-compatibility.md b/docs/uts/type-compatibility.md index 4fcc6d19b26522fac53bd418b7bf3d460184e6b2..a84cbfec3055ac0b1b17406f6f9397a665793b44 100644 --- a/docs/uts/type-compatibility.md +++ b/docs/uts/type-compatibility.md @@ -73,6 +73,8 @@ console.log(result instanceof Obj) // true ### any类型 +> 4.18版本起,uts在编译到js时,any类型会包含null类型。 + 不同于ts,uts中any类型不包含null类型。 例如定义可选参数时应使用下面的写法: