2 Star 0 Fork 0

IngridZ/Java_assessment

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Launcher.java 1.27 KB
一键复制 编辑 原始数据 按行查看 历史
IngridZ 提交于 2020-11-03 17:16 . Launcher是main方法入口
public class Launcher {
public static void main(String[] args) throws Exception {
try {
NoteStore notestore = new NoteStore();
TextNote textnote = new TextNote();
textnote.setNote("Java is a set of computer software and specifications developed by James Gosling at Sun Microsystems.");
notestore.addNotes(textnote);
textnote.printtext();
textnote.setNote("Few books to read-lkigai,How to win friends and influence people");
notestore.addNotes(textnote);
textnote.printtext();
TextAndImageNote imagenote = new TextAndImageNote();
imagenote.setNote("The shopping list on my fridge,");
imagenote.setUrl("//foo/bar1/bar2/imgset1.jpg");
notestore.addNotes(imagenote);
imagenote.printtext();
imagenote.printurl();
System.out.println();
imagenote.setNote("The size label of Jack's shirt,");
imagenote.setUrl("//foo/bar1/bar2/imgset2.jpg");
notestore.addNotes(imagenote);
imagenote.printtext();
imagenote.printurl();
} catch (Exception e) {
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ingridz/java_assessment.git
git@gitee.com:ingridz/java_assessment.git
ingridz
java_assessment
Java_assessment
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385