摘要:
html 样式 1.样式分为内联样式和外联样式: 内联样式:样式代码直接写在当前html页面中 外联样式:样式写在XXX.css文件中,并且在需要的页面中,使用Link标签引入 2.样式: 样式代码是写在head标签中的style标签里的代码,主要是给html(网页)内容进行排版和颜色字体设置的 i 阅读全文
摘要:
##1.包装类: Byte Short Integer Long Character Float Double Boolean ##2.类型转换 int类转换成Integer类型 使用构造方法:Integer i=new Integer 使用静态方法:Integer i=Integer. value 阅读全文