本文介绍了javascript中引用和实例之间的区别的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有时我会听到人们说对象的引用,有些人说对象的实例
有什么区别?
Sometimes I hear people say "a reference to a object" and some say "a instance of a object"What is the difference?
推荐答案
变量将引用保存到对象的实例。
实际对象是实例。
用于访问对象的变量/变量包含引用。
The variable/variables used to access the object hold the references to it.
这篇关于javascript中引用和实例之间的区别的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!