摘要: body的属性: bgcolor 页面背景色 (重点) background 背景壁纸 (重点) text 文字颜色 topmargin 上页边距 rightmargin 右页边距 bottomargin 下页边距 leftmargin 左页边距 一般标签: 1.格式控制标签: <font colo 阅读全文
posted @ 2016-04-28 17:07 辰辰0815 阅读(122) 评论(0) 推荐(0)
摘要: foreach( 对集合每个元素的引用 in 集合 ){ } int[] a = new int[5]{1,2,3,4,5};foreach( int b in a ){ //b就是a中的每个元素} 注意:1.foreach只能对集合进行遍历。2.foreach在操作集合的时候,只能读不能改。 3. 阅读全文
posted @ 2016-04-28 08:30 辰辰0815 阅读(177) 评论(0) 推荐(0)