文本编辑器:Typora
文件后缀xxx.md
在前面加上> 就行
+++
三个*
三个-
三个+
或者选中要加链接的字按ctrl+k
名字 | 性别 | 生日 |
---|---|---|
张山 | 男 | 2001.06.05 |
三个tab建上面的点`
package ch06_01;
/*
访问接口的静态常量(常量属性)
*/
public class Example6_1_1 {
public static void main(String[] args) {
// 通过“接口名.静态常量名”访问接口的静态常量
System.out.println(Printable.MAX);
}
}
原文:https://www.cnblogs.com/Victor0118/p/14326820.html