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.
我正在使用 swiftsoup 库,其中有 Document 类,我用它来解析 html 文档。但是在我的团队中,我的一位朋友出于不同的目的创建了 Document 类。现在我的代码在他拉动后发生了冲突。有没有办法同时使用这两个类?错误是“无法将'文档'类型的值转换为指定类型'文档'”提前致谢
模块是命名空间。 SwiftSoup.Document不是MyApp.Document。
SwiftSoup.Document
MyApp.Document
更好的是,使用 Refactor -> Rename 并首先防止冲突。