当前位置: 技术问答>java相关
求教一个英文单词的意思
来源: 互联网 发布时间:2017-04-15
本文导语: If an array variable v has type A[], where A is a reference type, then v can hold a reference to an instance of any array type B[], provided B can be assigned to A. 其中的 reference 做什么意思。 这是JAVA 考试笔记中的问题 ...
If an array variable v has type A[], where A is a reference type, then v can hold a reference to an instance of any array type B[], provided B can be assigned to A.
其中的 reference 做什么意思。
这是JAVA 考试笔记中的问题
请指教!!
其中的 reference 做什么意思。
这是JAVA 考试笔记中的问题
请指教!!
|
If an array variable v has type A[], where A is a reference type, then v can hold a reference to an instance of any array type B[], provided B can be assigned to A.
如果数组变量v为A[]类型,其中A为引用类型,又B可以被赋值给A,则v可以保存任何B[]类型数组的一个实例的引用。
举例:
class A
{...}
class B extends A
{...}
A[] a; //a is just a reference.
B[] b1 = new B[10], b2 = new B[10];
a = b1; //right
a = b2; //right too
如果数组变量v为A[]类型,其中A为引用类型,又B可以被赋值给A,则v可以保存任何B[]类型数组的一个实例的引用。
举例:
class A
{...}
class B extends A
{...}
A[] a; //a is just a reference.
B[] b1 = new B[10], b2 = new B[10];
a = b1; //right
a = b2; //right too
|
引用
|
参考值
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。