- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
在程序中
public static void main(String[] args){
int x = 1;
int y = 2;
int[] z = new int[]{x, y};
z[0] = 3;
System.out.println(x); //prints 1
}
我预计会打印 3。但是1是。为什么?我认为 Java 只复制引用,即当我们将引用传递给方法时,该方法将使用对同一对象的另一个引用进行操作。这就像 C++ 指针和原始类型。
于是尝试咨询JLS 10.6并没有发现任何有用的东西。也许我对 Java 中的原始类型有一些误解。你能澄清一下吗?
最佳答案
Why does creating an array from primitives copy them?
出于完全相同的原因:
int a = 5;
int b = a;
...复制 a
的值进入b
,而不在 a
之间创建任何类型的链接和 b
: 值 被复制,而不是对变量的某种引用。
回复你的评论:
But when we operate on reference types, the reference copies, doesn't it?
是的,确实如此,就像在您的 int
中复制的数字一样场景。
b = a
(或你的数组初始值设定项)工作完全相同的方式无论是否a
和 b
是原始类型变量或引用类型变量:a
中的值被复制到b
, 然后 a
之间没有持续的链接和 b
.
唯一的区别是,当您处理引用类型时,变量中的值不是实际的东西,它是对实际的东西的引用。因此,将该引用从一个变量复制到另一个变量只会使这两个变量引用同一事物,就像我上面的代码使 a
一样。和 b
两者的值为 5。
考虑:让我们创建一个列表:
List<String> a = new ArrayList<String>();
这给了我们这样的内存:
+----------+a(55465)----->| the list | +----------+
The variable a
contains a value which is a reference to an object. I've depicted that value above as 55465, but we never actually see the raw value in our Java code (and it changes as garbage collection is done). It's just a value, like any other value, which tells the JVM where to find the object in memory. You can think of it like a long
containing a memory address (that's not what it really is, but it works conceptually).
Now we do this:
List<String> b = a;
现在我们在内存中有这样的东西:
a(55465)--+ | +----------+ +--->| the list | | +----------+b(55465)--+
Both a
and b
contain a value which refers to the list.
You can see how that's exactly like:
int a = 5
给我们
a(5)
and then
int b = a;
给我们
a(5)b(5)
Values are copied between variables, passed into functions, etc. The only difference with reference types is what that value is used for, how it's interpreted.
If so, I would say that java is pass by value in the sense of copying values of primitives and the references of reference types. Right?
No. "Pass by value" and "pass by reference" have a specific meaning in computing: It's about having a reference to a variable, not an object. This is what pass-by-reference looks like:
// NOT JAVA; Java doesn't have this
void foo(int &a) { // Fake pass-by-reference thing
a = 3;
}
int a = 5;
foo(&a); // Fake pass-by-reference operator
System.out.println(a); // 3
按引用传递与对象引用无关。他们唯一的共同点是“引用”这个词。 Java 是一种纯粹的按值传递语言。
关于java - 为什么从基元创建数组会复制它们?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34917452/
我正在编写一个应用程序,允许用户创建一个“问卷”,然后向其中添加问题。我正在使用核心数据来存储信息。我创建了一个问卷实体,并与问题实体建立了“一对多”关系。我的问题是,如果要允许用户复制(复制)整个调
有没有办法复制或复制 SharedPreference?或者我需要从一个变量中获取每个变量,然后将它们放入另一个变量中吗? 最佳答案 尝试这样的事情: //sp1 is the shared pref
下面的(A)和(B)有区别吗? (假设 NON ARC,如果重要的话) // --- (A) --- @interface Zoo : NSObject{} @property (copy) Dog
我正在尝试将 mysql SELECT 查询保存到文件中,如下所示: $result = mysqli_query($db,$sql); $out = fopen('tmp/csv.csv', 'w'
我需要创建一个 CVPixelBufferRef 的副本,以便能够使用副本中的值以按位方式操作原始像素缓冲区。我似乎无法使用 CVPixelBufferCreate 或 CVPixelBufferCr
我在 Source 文件夹中有一个 Active wave 录音 wave-file.wav。我需要使用新名称 wave-file-copy.wav 将此文件复制到 Destination 文件夹。
在使用 GNU Autotools 构建的项目中,我有一个脚本需要通过 make 修改以包含安装路径。这是一个小例子: configure.ac: AC_INIT(foobar, 1.0) AC_PR
我想将 SQL 的行复制到同一个表中。但是在我的表中,我有一个“文本”列。 使用此 SQL: CREATE TEMPORARY TABLE produit2 ENGINE=MEMORY SELECT
谁能给我解释一下 df2 = df1 df2 = df1.copy() df3 = df1.copy(deep=False) 我已经尝试了所有选项并执行了以下操作: df1 = pd.DataFram
Hazelcast 是否具有类似于 Ehcache 的复制? http://www.ehcache.org/generated/2.9.0/pdf/Ehcache_Replication_Guide.
我有以下拓扑。一个 Ubuntu 16.04。运行我的全局 MySQL 服务器的 Amazon AWS 上的实例。我想将此服务器用作许多本地主服务器(Windows 机器 MySQL 服务器)的从服务
使用 SQLyog,我正在测试表中是否设置了正确的值。我尝试过 SELECT type_service FROM service WHERE email='test@gmail.com' 因此,只输出
有人可以提供一些关于如何配置 ElasticSearch 进行复制的说明。我在 Windows 中运行 ES,并且了解如果我在同一台服务器上多次运行 bat 文件,则会启动一个单独的 ES 实例,并且
一 点睛 ThreadGroup 复制线程的两个方法。 public int enumerate(Thread list[]) // 会将 ThreadGroup 中的 active 线程全部复制到
一 点睛 ThreadGroup 复制线程组的两个方法。 public int enumerate(ThreadGroup list[]) // 相对于 enumerate(list,true) pu
官方documentation Cassandra 说: Configure the keyspace and create the new datacenter: Use ALTER KEYSPAC
This question already has answers here: How to weight smoothing by arbitrary factor in ggplot2? (2个答
我们有一个表格来表明对各种俱乐部的兴趣。输出将数据记录在 Excel 电子表格中,其中列有他们的首选姓名、姓氏、电子邮件、代词,以及他们感兴趣的俱乐部的相应列中的“1”(下面的模型)。 我们希望为俱乐
This question already has answers here: Closed 8 years ago. Possible Duplicate: In vim, how do I get
如何复制形状及其所在的单元格?当我手动复制时,形状会跟随单元格,但是当我使用宏进行复制时,我会得到除形状之外的所有其他内容。 Cells(sourceRow, sourceColumn).Copy C
我是一名优秀的程序员,十分优秀!