计算机 翻译 英文 笔试题

来源:互联网 发布:知乎注册有什么要求 编辑:程序博客网 时间:2024/06/06 08:45

翻译:

无论使用哪种类型的数组,数组标识符其实只是一个引用,指向在堆中创建的一个真实的对象,这个(数组)对象可以保存指向其他对象的引用。可以作为数组初始化语法的一部分来隐式的创建此对象或者用new表达式显示的创建,只读成员length是数组对象的一部分(事实上,这是唯一一个可以访问的字段或方法),表示此数组可以存储多少元素。“[]”语法是访问数组对象的唯一方式。


No matter use which kinds of types of array, where identifier is really just a reference, pointing to the pile in creating a real object, the array object can save point to other object reference. Can be used as part of an array initialization grammar to implicit create this object or use new expression of that create, read only members is part of the array length objects (in fact, this is the only access to the field or method), says the array can store how many elements. "[the]" grammar is the only way to visit array object.


注:

数组:array                                                                 成员:member

字段:fild                                                                     方法:method

对象:object                                                                属性:property

标识符:identifier                                                       堆:heap

引用:reference                                                         栈:stack

初始化:initialization                                                 表达式:expression

隐式的:implicit 


原创粉丝点击