如果我导入一个包并且不能使用该包,那么java应用程序的后果是什么?
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
上面的软件包用于我的java应用程序,这是我从未使用的第三个软件包。
答案 0 :(得分:1)
您可以使用import time
from raven import Client
client = Client('https://<key>:<secret>@app.getsentry.com/<project>')
start_time = time.time()
some_func()
client.captureMessage("Execution time of some_func %s seconds" % (time.time() - start_time))
来检查会发生什么。
示例类:
javap
编译课程并稍后运行import java.util.ArrayList;
public class A {
public static void main(String[] args) throws Exception {
System.out.println("Test");
}
}
- 没有区别,未使用的导入不会对课程产生影响。