摘要:
泛型中?的作用 概念 无边界通配符? 可以直接定义变量的 Point的定义 class Point<T> { private T x; private T y; public Point(){ } public Point(T x,T y){ this.x = x; this.y = y; } pu 阅读全文
摘要:
# 方法返回布尔类型 方法命名:以should开头 ``` ## 是否应该返回空页面 shouldReturnEmtyPage ``` 阅读全文