gpt4 book ai didi

coffeescript - 在CoffeeScript中获取类类型

转载 作者:行者123 更新时间:2023-12-03 13:19:47 26 4
gpt4 key购买 nike

实例化对象后,如何找到该类?

class Cat
constructor: (@name) ->

class Dog
constructor: (@name) ->

cat = new Cat "Kitty"
dog = new Dog "Doggy"

if (cat == Cat) <- I want to do something like this

最佳答案

只需将==更改为instanceof

if(cat instanceof Cat)

关于coffeescript - 在CoffeeScript中获取类类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9525292/

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