在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称:google/error-prone开源软件地址:https://github.com/google/error-prone开源编程语言:Java 100.0%开源软件介绍:Error ProneError Prone is a static analysis tool for Java that catches common programming mistakes at compile-time. public class ShortSet {
public static void main (String[] args) {
Set<Short> s = new HashSet<>();
for (short i = 0; i < 100; i++) {
s.add(i);
s.remove(i - 1);
}
System.out.println(s.size());
}
}
Getting StartedOur documentation is at errorprone.info. Error Prone works with Bazel, Maven, Ant, and Gradle. See our installation instructions for details. Developing Error ProneDeveloping and building Error Prone is documented on the wiki. Links
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论