HarmonyOS ArkTS中如何判断某个类的实例是否实现了某个方法

HarmonyOS
3天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
zxjiu

示例参考如下:

function getMethods(classInstance: ESObject): string[] {
  return Object.getOwnPropertyNames(classInstance.prototype).filter(name =>
  typeof classInstance.prototype[name] === 'function' && name !== 'constructor');
}
class FuncObj {
  constructor() {
  }
  func0() {
    console.log('func0')
  }
  public func1() {
    console.log('func1');
  }
  private func2() {
    console.log('func2');
  }
  protected func3() {
    console.log('func3')
  }
}
@Entry
@Component
struct Index {
  @State funcNames: string = ''

  build() {
    Column() {
      Button('获取函数名称').onClick(() => {
        const methodList = getMethods(FuncObj) as string[]
        this.funcNames = methodList.join('、')
      }).margin({ bottom: 20 })
      Text(this.funcNames)
    }.justifyContent(FlexAlign.Center)
    .alignItems(HorizontalAlign.Center)
    .height('100%')
    .width('100%')
  }
}
分享
微博
QQ
微信
回复
3天前
相关问题
如何判断一个对象实现某个接口
1475浏览 • 1回复 待解决
HarmonyOS判断Object是否含有某个属性
1018浏览 • 1回复 待解决
如何判断JS对象是否存在某个
2355浏览 • 1回复 待解决
怎么判断某个customDialog是否弹出?
275浏览 • 1回复 待解决
如何判断对象是某个interface实现
1168浏览 • 1回复 待解决
判断是否实现某接口
438浏览 • 1回复 待解决
如何判断某个应用是否为系统应用
2289浏览 • 1回复 待解决