gpt4 book ai didi

c# - 为什么 C# 中需要 "new"关键字

转载 作者:行者123 更新时间:2023-11-30 13:26:48 24 4
gpt4 key购买 nike

<分区>

假设我有一个函数 foo,它将一个向量类作为输入:

void Foo( Vector3 vector );

如果我想调用这个函数:

Foo( new Vector3(1, 2, 3) );

为什么 new 关键字是必需的(在 C# 中)?

在其他语言中,例如:C++,在这种情况下 不需要使用 new。只是显得多余

编辑 1:@spender 以下是完全有效的 C++

Foo ( Vector3(1, 2, 3) );

将在堆栈上创建一个 Vector3 对象,不需要 new/calloc/malloc。

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com