摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> div{ width: 1000px; height: 700px; border: 1px solid red; 阅读全文
posted @ 2021-02-15 11:51 妖精的学习之路 阅读(19) 评论(0) 推荐(0)
摘要: HTML <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <link rel="stylesheet" href="style.css"> </head> <body> <div 阅读全文
posted @ 2021-02-15 11:22 妖精的学习之路 阅读(14) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> a{ text-decoration: none; } a:hover{ color: #4336ff; backg 阅读全文
posted @ 2021-02-04 15:36 妖精的学习之路 阅读(42) 评论(0) 推荐(0)
摘要: 字体样式(font) <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> <!-- font-family 字体 text-align 位置 font-size 大小 阅读全文
posted @ 2021-02-04 14:54 妖精的学习之路 阅读(48) 评论(0) 推荐(0)
摘要: css的三种导入方式 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <!-- 内部样式--> <style> h1{ color: blue; } </style> <link 阅读全文
posted @ 2021-02-03 17:33 妖精的学习之路 阅读(26) 评论(0) 推荐(0)
摘要: 超链接标签 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>连接标签</title> </head> <body> <!--使用name作为标记--> <a name="top">顶部</a> <!--连接标 阅读全文
posted @ 2021-01-30 13:12 妖精的学习之路 阅读(47) 评论(0) 推荐(0)
摘要: package Reflection; import java.lang.reflect.Constructor; import java.lang.reflect.Field; import java.lang.reflect.InvocationTargetException; import j 阅读全文
posted @ 2021-01-28 15:27 妖精的学习之路 阅读(53) 评论(0) 推荐(0)
摘要: package Reflection; import java.lang.reflect.Constructor; import java.lang.reflect.Field; import java.lang.reflect.Method; //获得类的信息 public class test0 阅读全文
posted @ 2021-01-28 14:57 妖精的学习之路 阅读(66) 评论(0) 推荐(0)
摘要: 类的加载 类初始化 阅读全文
posted @ 2021-01-27 15:31 妖精的学习之路 阅读(32) 评论(0) 推荐(0)
摘要: 实验代码 package Reflection; public class test01 { public static void main(String[] args) throws ClassNotFoundException { Person person = new Student(); S 阅读全文
posted @ 2021-01-27 14:32 妖精的学习之路 阅读(58) 评论(0) 推荐(0)