Skip to content

Commit

Permalink
Merge pull request #7 from Sanjeever/master
Browse files Browse the repository at this point in the history
fix: typos
  • Loading branch information
looly authored Aug 30, 2023
2 parents bce8590 + aee8867 commit 2bc63c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/core/语言特性/控制台打印封装-Console.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## 由来

编码中我们常常需要调试输出一些信息,除了打印日志,最长用的要数`System.out``System.err`
编码中我们常常需要调试输出一些信息,除了打印日志,最常用的要数`System.out``System.err`

比如我们打印一个Hello World,可以这样写:

Expand All @@ -18,7 +18,7 @@ System.out.println("Hello World");
## 使用

1. `Console.log` 这个方法基本等同于`System.out.println`,但是支持类似于Slf4j的字符串模板语法,同时也会自动将对象(包括数组)转为字符串形式。
1. `Console.log` 这个方法基本等同于`System.out.println`但是支持类似于Slf4j的字符串模板语法,同时也会自动将对象(包括数组)转为字符串形式。

```java
String[] a = {"abc", "bcd", "def"};
Expand All @@ -30,4 +30,4 @@ Console.log("This is Console log for {}.", "test");
//控制台输出:This is Console log for test.
```

2. `Console.error` 这个方法基本等同于`System.err.println`,但是支持类似于Slf4j的字符串模板语法,同时也会自动将对象(包括数组)转为字符串形式。
2. `Console.error` 这个方法基本等同于`System.err.println`,但是支持类似于Slf4j的字符串模板语法,同时也会自动将对象(包括数组)转为字符串形式。

0 comments on commit 2bc63c8

Please sign in to comment.