gpt4 book ai didi

javascript - 如何获取 Typescript 中的基本类型?

转载 作者:行者123 更新时间:2023-11-30 17:32:55 25 4
gpt4 key购买 nike

在尝试掌握如何遍历生成的 Javascript 中的原型(prototype)链之后,我未能实现下面示例中的函数 WriteInheritedName()。这个想法是找到基本类型并写下它的名字。有什么想法吗?

class Animal {
}

class Snake extends Animal {
}

function WriteClassName( cls ) {
console.log( cls.name );
}

function WriteInheritedName( cls ) {
console.log( "I wish I new how to write Animal" );
}

WriteClassName( Snake );
WriteInheritedName( Snake );

最佳答案

我自己发现的。

 function WriteInheritedName(cls) {
console.log( Object.getPrototypeOf(cls.prototype).constructor.name );
}

关于javascript - 如何获取 Typescript 中的基本类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22619563/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com