大括号的此约定的名称是什么?
2022-09-04 05:06:02
我对我看到的编写方法和类的开发人员数量感到有点困惑,这些方法和类在类名或方法下面有大括号。他们遵循什么惯例?
Sun明确指出,正确的声明是:
// this declaration follows sun's conventions
class Sample extends Object {
Sample(int i, int j) {
....
}
}
然而,我越来越多地看到这种说法(即使在书中):
// this declaration follows a convention I cant identify
class Sample extends Object
{
Sample(int i, int j)
{
....
}
}
我知道,一个公约只是一个公约,只要你遵循一个公约,一切都很好。我只是在寻找后一种声明遵循什么惯例的答案?