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.
我遇到了一个我以前从未见过的问题,搜索什么也没找到。我在我的程序中导入了 SWT DateTime 和 Joda DateTime,看起来它们不能共存。有没有办法在 Eclipse 中允许这两个类?它一直想专门使用 swt DateTime 小部件,我不确定如何在不同的导入中处理两个同名的类。谢谢!
您可以跳过导入并使用完整的包名引用类:
public class Main { private org.joda.time.DateTime jodaDateTime; private swt.DateTime swtDateTime; }