示例
public class
ClassA {
char
variable1;
int
Variable1;
}
解决方案
此示例中存在两个仅以“v”的大小写区分的字段。应避免这种情况
public class
ClassA {
char
variable1;
int
Variable2;
}