初始化块和指定范围的块之间有区别吗

发布于 2024-12-10 03:37:56 字数 367 浏览 0 评论 0原文

如果您编写一个类并使用类似的内容,

...
int x;
{ x = 2; }
...

这将是一个初始化块,对吧?

那么如何使用花括号来指定范围,以便它们像任何其他代码一样执行?基本上,它们不是构造函数的一部分。

例如,

如果您要在 switch 语句中使用块,它会像初始化块一样执行吗?

    switch(...)
    {
    case :
    { // this right here how does the compiler know the difference?
    ...
    break;
    }
    }

If you writing a class and you use something like this

...
int x;
{ x = 2; }
...

This would be an initialisation block right?

So how would you use curly braces just to designate scope, so that they are executed like any other code? Basically so they are not part of the constructor.

Ex

if you were to use a block inside a switch statement, would this be executed like an initialisation block?

    switch(...)
    {
    case :
    { // this right here how does the compiler know the difference?
    ...
    break;
    }
    }

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

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

发布评论

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

评论(1

只有影子陪我不离不弃 2024-12-17 03:37:57

初始化块仅适用于类范围内且前面没有函数原型的块(即不是函数体的块)。

在函数体内,您创建的任何块都会引入作用域,但不会被解释为初始化。

例子:

public class NameOfClass {
    {
        // This is an initalization block
    }

    AccessModifier ReturnType nameOfFunction(ParamType nameOfParam) {
        // This is a function body and is not an initialization

        {
          // This introduces scope, is not an initialization
        }
    }
}

Initialization blocks only apply to blocks that are in the scope of a class and are not preceded by a function prototype (i.e. blocks that are not the body of a function).

Within the body of a function, any blocks that you create will introduce scope but will not be interpreted as an initialization.

Example:

public class NameOfClass {
    {
        // This is an initalization block
    }

    AccessModifier ReturnType nameOfFunction(ParamType nameOfParam) {
        // This is a function body and is not an initialization

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