“new”的语法解释Solidity 中合约的关键字

发布于 2025-01-11 18:14:08 字数 366 浏览 0 评论 0原文

我试图理解 C c = new C(); 的语法

我读了 new 关键字部署,初始化状态变量,运行构造函数,将随机数设置为 1,并返回新实例的地址。

我读到状态变量 a 有一个 0 元公共 getter 函数 a(),它返回 a 的值。

问题:

  1. 合约的 getter 函数“是什么”?
  2. 为什么new作用于getter函数?
  3. C c = new C();中,为什么我们需要第一个C来定义变量?

I am trying to understand the syntax of C c = new C();

I read the new keyword deploys, initializes state variables, runs the constructor, sets nonce to one, and returns address of new instance.

I read that a state variable a has a 0-ary public getter function a() that returns the value of a.

Questions:

  1. What "is" the getter function of a contract?
  2. Why does new act on the getter function?
  3. In C c = new C(); why do we need the first C to define the variable?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

合约的 getter 函数“是什么”?

为什么new作用于getter函数?

您可以通过省略 来创建指向已部署合约的指针新的关键字。请注意,该地址不是构造函数参数 - 它是外部合约的地址。

// points to a contract already deployed on address 0x123
C c = C(address(0x123));

C c = new C();中,为什么我们需要第一个C来定义变量?

Solidity是一种严格类型语言。所以第一个C定义了一个变量类型C

What "is" the getter function of a contract?

Why does new act on the getter function?

You can create a pointer to an already deployed contract by omitting the new keyword. Mind that the address is not a constructor param - it's an address of the external contract.

// points to a contract already deployed on address 0x123
C c = C(address(0x123));

In C c = new C(); why do we need the first C to define the variable?

Solidity is a strictly typed language. So the first C defines a variable type C.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文