05 2017 档案
【js】栈方法和队列方法
摘要:栈方法:后进先出,推入(push)和弹出(pop);push("**")返回数组长度,pop()返回弹出的项。 var colors = new Array(); // 创建一个数组var count = colors.push("red", "green"); // 推入两项alert(count 阅读全文
posted @ 2017-05-27 10:18 小金鱼的笔记 阅读(391) 评论(0) 推荐(0)
adb devices 不能连接设备 could not install *smartsocket* listener
摘要:cmd以管理员身份运行命令adb devices 或adb reverse tcp:8081 tcp:8081,无法连接设备,出现上图信息。 输入命令:adb kill-server 再输入:adb devices 或 adb reverse tcp:8081 tcp:8081 连接上设备。 阅读全文
posted @ 2017-05-15 15:20 小金鱼的笔记 阅读(553) 评论(0) 推荐(0)