我是核心 Java 的新手,所以我试图从正确的方向开始。
我正在尝试确定是否存在使用“类型缩写”进行变量命名的公认约定。
例如
pulic class ShirtExample {
// String variables
String foo = new String("String Variable");
//vs
String strFoo = new String("String Variable");
// Array variables
Shirt [] shirts = {
new Shirt(),
new Shirt(),
new Shirt()
};
//vs
Shirt [] arrShirts = {
new Shirt(),
new Shirt(),
new Shirt()
};
}