diff --git a/docs/plugin/uts-for-android.md b/docs/plugin/uts-for-android.md index 1eaa5bd4316ffee0b9acf5e77c750484333f8c38..0dd29ef2ae82595b09a677af9c2cf128d1630e53 100644 --- a/docs/plugin/uts-for-android.md +++ b/docs/plugin/uts-for-android.md @@ -404,6 +404,30 @@ System.currentTimeMillis() ``` +### 4.9 UTS 不建议使用 快捷构造 + +`kotlin` 中 支持通过()的方式,快速实现无参构造器的声明 + +```kotlin +// 获取当前时间戳 +class ScreenReceiver extends BroadcastReceiver(){ + +} +``` + + +UTS环境中,不建议这样做(虽然目前这样做不会影响编译),建议使用手动声明无参构造 + +```ts +class ScreenReceiver extends BroadcastReceiver{ + + constructor (){ + super(); + } + +} +``` + ## 5 常见问题(持续更新)