作业帮 > 英语 > 作业

Java/英语:求外语帝解释这里的in

来源:学生作业帮 编辑:拍题作业网作业帮 分类:英语作业 时间:2024/05/17 00:44:15
Java/英语:求外语帝解释这里的in
As customary in
programming tradition,here is an example illustrating the simplest way to
output "Hello world" using SLF4J.It begins by getting a logger with
the name "HelloWorld".This logger is 【in turn】 used to log the message
"Hello World".
import
org.slf4j.Logger;
import
org.slf4j.LoggerFactory;
public class
HelloWorld {
public static void main(String[] args) {
Logger logger =
LoggerFactory.getLogger(HelloWorld.class);
logger.info("Hello World");
}
}
轮流,依次