摘要: 字体 p{font-family :"";}设置字体类型 p{font-size:12px;} 字体大小em rem p{font-style}字体风格 normal正常字体 italic斜体 oblique倾斜 font-weight 设置字体粗细 normal 默认 bold粗体 colder更 阅读全文
posted @ 2021-12-02 20:53 赎梦 阅读(153) 评论(0) 推荐(0)
摘要: 类型转换 public class Demo04 { public static void main(String[] args) { int i = 128; byte b = (byte) i;//在强制转换时要在变量前(i)加上()中间写类型 这里是byte 。强制转换是有高转到低的时候用的: 阅读全文
posted @ 2021-10-26 16:21 赎梦 阅读(43) 评论(0) 推荐(0)