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.
即使有错误和缺少类,是否可以构建和编译 Android 应用程序?(例如,假设错误出现在一轮测试期间不会使用的类中)。
不。Java 和许多编译环境一样,希望在构建时编译整个源代码树,当然就像 Android 那样。
但是,如果目前不需要这些东西,大概您可以注释掉编译错误和对缺失类的引用,以获得干净的编译。
不,这是不可能的。您可以暂时注释不完整的代码,这会阻止编译。