Ant构建和Eclipse构建不同的结果

时间:2019-02-20 03:29:38

标签: java eclipse ant

我对ANT版本很陌生。当前,我正在构建一个ANT任务来构建JAR文件,但是与使用Eclipse IDE构建的JAR编译后的结果却大不相同。

我正在使用WAS 9中的JRE进行ANT和Eclipse编译。

这是Eclipse中的一个例子

CachedCountry$1()
{
    this$0 = CachedCountry.this;
    super();
}

这是来自ANT

CachedCountry$1()
{
    this.this$0 = CachedCountry.this;
    super();
}

是什么原因导致发生了什么不同?

0 个答案:

没有答案