很难准确地搜索到这个。我在几个地方看到过这个,我什至在代码中尝试过,看看它是如何工作的,但只是为了让我确切地知道如何使用它们,并确保我不会滥用它们,我想我会问在这。
public void doSomethingSpecial()
{
String strHello = null;
// What is the following section in braces for
{
strHello = "Hello World"
}
for(int i = 0; i < 10; i++)
{
// What is the significance of them it in a loop?
{
strHello = "Hello";
// Do something else...
}
.
.
.
}
}
- 有人可以澄清这些大括号大括号的用途吗?
- 我假设它们像一种方法一样工作,并且只要没有在块之外指定任何内容,它们就会限制其范围,但是还有其他用途吗?
- 他们的确切名字是什么?
提前致谢