我是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()
};
}
最佳答案
我将不使用任何有关变量命名的约定,尤其是匈牙利符号等。名称应代表您要存储的内容。