我试图使用谷歌的@AutoValue。但是,它不适用于我的 Intellij。
Step.1我被选上了这门课
import com.google.auto.value.AutoValue;
@AutoValue
public abstract class Example {
public static Example create(String name, int integer) {
return new AutoValue_Example(name, integer);
}
public abstract String name();
public abstract int integer();
}
然后
Step.2 将此代码输入到build.gradle
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
compile group: 'com.google.auto.value', name: 'auto-value', version: '1.2'
}
Step.3我已经安装了 AutoValue 插件。
但是Java编译器给我这个错误:
Error:(12, 20) java: cannot find symbol
symbol: class AutoValue_Animal
location: class Animal