考虑这个类:
class A {
num: number;
str: string;
someFunction(){console.log("SomeFunction called!")}
}
someFunction需要一些内存来存储。对于类的所有实例,我们是否只将这个函数保存在内存中一次A,或者每个创建的单个对象都分配内存来存储someFunction?
哈士奇WWW
相关分类