Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法缩短java中的类型名称。类似于 c++ 中的 typedef 或类似于命名空间的使用? 例如,如果我的类型为“org.w3c.dom.Node”并且我不想 每次都写那个全名,但也不想对整个文件进行导入, 而只是在本地定义类型“节点”在一种方法上是“org.w3c.dom.Node”?
不,没有办法在“本地”创建别名(我将其称为“本地”,您的意思是在方法中,因为您说您不想import在文件顶部执行“本地”操作文件)。
import
您不想为整个文件导入该类,但是如何将需要 org.w3c.dom.Node 的方法移动到具有该导入的新文件?