这是我的第一篇文章

这是二级标题

这是正文哈哈哈。 换了一行 加粗了 快捷键 ctrl+b 变斜了 快捷键 ctrl+i

  1. 哈哈哈
  2. 自动编号了哦
    1. tab一下
      1. 再tab一下

ctrl+alt+v 复制图片 王者英雄

这是三级标题

\lim_{x \to \infin}\frac{sin(t)}{x}=1

这是一段文字中插入公式。 ctrl+m ```blockformula_editor ctrl+m x2


```blockformula_editor

## 表格
| 小明   |   大明 | 姚明  |
| :----- | -----: | :---: |
| 左对齐 | 右对齐 | 居中  |
| 1.2    |    2.4 |  3.6  |

alt+shift+f 格式化一下,更好看点

## 链接

这是一个[链接](https://www.limfx.pro/ReadArticle/57/yi-zhong-xie-zuo-de-xin-fang-fa)

## code

``````javascript

public class codeblock01 {
    public static void main(String[] args) {
    book book = new book("数据结构与算法");
	System.out.println("========================");
    book book1 = new book("kali从入门到入狱", 100, "呀吖呀");
    }

}

class book{
    private String name;
    private double price;
    private String author;
    //3个构造器,构成了重载
    //三个构造器都有重复的语句,看起来特别的多余
    //可以把一样的语句放到一个代码块中即可
    {
        System.out.println("书被打开了");
        System.out.println("书被合上了");
    }
    public book(String name) {
        //System.out.println("书被打开了");
        //System.out.println("书被合上了");
        System.out.println("构造器public book(String name)被调用");
        this.name = name;
    }

    public book(String name, double price) {
        //System.out.println("书被打开了");
        //ystem.out.println("书被合上了");
        this.name = name;
        this.price = price;
    }

    public book(String name, double price, String author) {
        //System.out.println("书被打开了");
        //System.out.println("书被合上了");
        System.out.println("构造器public book(String name, double price, String author)被调用");
        this.name = name;
        this.price = price;
        this.author = author;
    }
}



本文章使用limfx的vscode插件快速发布