What is the better way to design variables?
Should i format variables like this: String type = null; String name = null; int age = 0; double weight = 0; boolean isFly; boolean isWalk; boolean isSwim; Or like this: String type = null, name = null; int age = 0; double weight = 0; boolean isFly, isWalk, isSwim; And may you give me… Read More What is the better way to design variables?