Java中的大括号本身是什么意思?
2022-08-31 12:06:56
我有一些Java代码,以两种方式使用大括号
// Curly braces attached to an 'if' statement:
if(node.getId() != null)
{
node.getId().apply(this);
}
// Curly braces by themselves:
{
List<PExp> copy = new ArrayList<PExp>(node.getArgs());
for(PExp e : copy)
{
e.apply(this);
}
}
outAMethodExp(node);
第一个语句后面的那些独立的大括号是什么意思?if