I'm trying to adjust myself to the style of putting opening curly braces on the same line as the statement they belong to. Usually it looks good:
void foo(){
//code
}
But when the function header is compound, and has code after the arguments list, it starts to look a little disturbing:
void foo() throws Exception{
//code
}
And when the it gets so long you need to break it, it looks terrible:
void foo(int arg1,boolean arg2) throws ThisException,
ThatException,
AnotherException{
//code
}
Ofcourse, compound function headers still look elegant in the curly-braces-on-their-own-line style, but I want to keep consistent coding style.
How do other users of the same-line style handle this problem?