Declaring multiple variables on one line is difficult to read.
class MyClass { private int a, b; public void method(){ int c; int d; } }
class MyClass { private int a; private int b; public void method(){ int c; int d; } }