摘要: 反射:将类的各个组成部分封装为其他对象,这就是反射机制 web的工作原理:(从输入一个网页地址到得到页面,这中间经历了什么过程,浏览器->输入url地址->显示网站内容) 首先,我们输入的网址成为url地址,它的格式是:http://host[:port][abs_path]。 理解:http:// 阅读全文
posted @ 2021-04-13 17:28 一颗小红星 阅读(61) 评论(0) 推荐(0)
摘要: for (Student student : aMap) { System.out.println(student.getAge()+student.getName()); }//iter是增强for循环的缩写 System.out.println(aMap.contains(s2)); //这里竟 阅读全文
posted @ 2021-04-13 15:59 一颗小红星 阅读(130) 评论(0) 推荐(0)