添加链接
link之家
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
// 已使用 public void output() { int index = binarySearch(new int[]{1, 2, 3, 4, 5, 6, 7, 8, 9}, 5); // output System.out.println("index:" + index);
4.2 格式输出
public void output() {
    int index = binarySearch(new int[]{1, 2, 3, 4, 5, 6, 7, 8, 9}, 5);
    System.out.println("index: " + index);
    // output
    // index: 4
4.3 多行输出
public void output() {
    int index = 0;
    System.out.println("index: " + index);
    index = binarySearch(new int[]{1, 2, 3, 4, 5, 6, 7, 8, 9}, 5);
    System.out.println("index: " + index);
    // output
    // index: 0  # 需按回车
    // index: 4
4.4 跨级输出(不支持递归)
// 在 binarySearch 函数第一行添加
System.out.println("key: " + key);
public void output() {
    int index = binarySearch(new int[]{1, 2, 3, 4, 5, 6, 7, 8, 9}, 5);
    System.out.println("index: " + index);
    // output
    // key: 5  # 需按回车
    // index: 4
4.5 其他说明

输出对象:除 System.out.println 等打印接口之外,打印的日志也会输出。

public void output() {
    int index = binarySearch(new int[]{1, 2, 3, 4, 5, 6, 7, 8, 9}, 5);
    log.info("index: {}", index);
    // output
    // index: 4

触发词:除 output 之外,resultoutcome 等近义词也有相同的效果。

public void output() {
    int index = binarySearch(new int[]{1, 2, 3, 4, 5, 6, 7, 8, 9}, 5);
    System.out.println("index: " + index);
    // result
    // index: 4

中文触发词:结果产物

public void output() {
    int index = binarySearch(new int[]{1, 2, 3, 4, 5, 6, 7, 8, 9}, 5);
    System.out.println("index: " + index);
    // 结果
    // index: 4

5. 代码优化

新建一个实体类,在头部位置添加描述信息,然后回车补全。

如果将描述放到类的内部,也可以生成,但会是一行一行来生成。但是如果描述下方添加内部类的代码,则是可以一次生成的。

7.2 模板生成

以其它类作为模板生成