Files
im/uni_modules/network-manage/utssdk/app-ios/network/WeakRef.uts
T
2025-12-27 07:08:30 +08:00

21 lines
244 B
Plaintext

/**
* 弱引用的包装类
*/
export class WeakRef<T extends Any>{
@UTSiOS.keyword("weak")
private value: T | null = null
constructor(value: T | null){
this.value = value;
}
public get(): T | null{
return this.value
}
}