範例
public class
ClassA
{{
public void
method(
int
Variable1,
char
variable1) {
}
}
解決方案
在給定的範例中,'method()' 的參數只有 'v' 的大小寫不同。應該避免這個情況
public class
ClassA
{{
public void
method(
int
Variable1,
char
variable2) {
}
}