getx
getx
-
First example is the getX () method .
第一个例子是getX()方法。
-
Suppose the getX () method only answers the value of an instance variable .
假定getX()方法只提供某一实例变量的值。
-
For that reason , don 't test getX (); there is no benefit .
因此,不用测试getX(),测试它不会带来任何好处。
-
The giveaway is the use of the private field x and the public getter method getX () in the same method and indeed in the same line .
他在一个方法中使用了私有字段x和公共getter方法getX(),实际上是在一行代码之中,这泄漏了他的身份。