这个问题在这里已经有一个答案:>
How to mark java code such that it’s not compiled 9个
如何从Java中的C#正确提供以下功能?
如何从Java中的C#正确提供以下功能?
[C#]
#define PRODUCTION //Change from sandBox to production to switch between both systems. #if SANDBox using NetSuite.com.netsuite.sandBox.webservices; #endif #if PRODUCTION using NetSuite.com.netsuite.webservices; #endif
解决方法
Java没有预处理器 – 所以简单的答案是你不能.
这种事情通常是使用依赖注入(Java)来处理的,它们更强大,更灵活.
http://www.vogella.com/articles/DependencyInjection/article.html