//操作系统:macOS、iOS、tvOS、watchOS、Linux、Android、Windows、FreeBSD
#if os(macOS) || os(iOS)
//CPU架构:i386、x86_64、arm、arm64
#elseif arch(x86_64) || arch(arm64)
//Swift版本
#elseif swift(<5) && swift(>=3)
//模拟器
#elseif targetEnvironment(simulator)
//可以导入某模块
#elseif canImport(Foundation)
#else
#endif
#if DEBUG
//DEBUG模式下做什么
#else
//RELEASE模式
#endif