摘要: 1.用canvas画一个时钟。 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> *{ margin: 0; padding: 0; } .box{ width: 阅读全文
posted @ 2018-08-14 17:33 玲珑塔 阅读(360) 评论(0) 推荐(0) 编辑
摘要: 1.ArrayList 它是实现了List接口的动态数组,与java中数组比较,它的容量可以动态增长。新长度=原长度+原长度/2 源码:pastingint newCapacity = oldCapacity + (oldCapacity >> 1);关于ArrayList的增删改查中,增加用add 阅读全文
posted @ 2018-08-14 10:48 玲珑塔 阅读(214) 评论(0) 推荐(0) 编辑