Markdown学习
二级标题
三级标题
四级标题
字体
hello,word!
hello,word!
hello,word!
hello,word!
引用
引用内容
> + 空格
分割线
(三个-号:---)
(三个号:***)也是分割线,但是占全屏
列表
- A
- B
- C
number + .
- A
- B
- C
- +空格
代码
public static void main(String[] args) {
String[] sourceStatus = {"UNASSIGNED","RUNNING","PAUSED","FAILED","DESTROYED","NA",""};
String[] targetStatus = {"NEW","NEW_SAVING","SUBMITTED","ACCEPTED","RUNNING","FINISHED","FAILED","KILLED","NA"};
for (String source : sourceStatus) {
for (String target : targetStatus) {
String jobStatus = getJobStatus(source, target, false);
if (jobStatus.equals("STOPPED")) {
System.out.println("[" + source + "," + target + "] -> STOPPED");
}
}
}
}
``` + 语言类型:表示语言类型格式
标签:学习,word,String,Typora,语法,source,分割线,hello,target From: https://www.cnblogs.com/liuxingcheng/p/16776985.html