上一页 1 ··· 36 37 38 39 40 41 42 43 44 ··· 68 下一页
摘要: 输出 阅读全文
posted @ 2019-04-28 12:18 anobscureretreat 阅读(3148) 评论(0) 推荐(0)
摘要: 链接:https://pan.baidu.com/s/1UrAnB5fmHKmYPESvqkU3Rg 密码:803f 下载大师版, 进入解压后的文件夹,双击安装程序 打开了安装界面,进入下图中的安装包中, 进入安装包中,点击下图中的install, 选择继续 等待安装完毕即可! 破解: 打开破解程序 阅读全文
posted @ 2019-04-27 00:10 anobscureretreat 阅读(1864) 评论(0) 推荐(0)
摘要: 打开时提示"已损坏,打不开。您应该将它移到废纸篓"或身份验证,因为它来自身份不明的开发者,和不显示允许任何来源,图片解锁和应用程序问题(如图片/application应用程序损坏,文件不能打开)。这个原因你可能是你的电脑完全禁用Gatekeeper检查。 打开终端,输入 关闭【终端】,重新打开 【系 阅读全文
posted @ 2019-04-26 23:35 anobscureretreat 阅读(15399) 评论(1) 推荐(2)
摘要: []==![] 阅读全文
posted @ 2019-04-26 18:12 anobscureretreat 阅读(254) 评论(0) 推荐(0)
摘要: 操作: 循环覆盖向tmp 文件写入坐标 tmp: 报错如下: 解决: 阅读全文
posted @ 2019-04-26 12:26 anobscureretreat 阅读(4785) 评论(0) 推荐(1)
摘要: 整型--int 布尔型--bool 字符串--str 列表--list 元组--tuple 字典--dict 阅读全文
posted @ 2019-04-26 02:23 anobscureretreat 阅读(4948) 评论(0) 推荐(0)
摘要: python2返回列表,python3返回迭代器,节约内存 阅读全文
posted @ 2019-04-26 02:22 anobscureretreat 阅读(775) 评论(0) 推荐(0)
摘要: 函数可以作为参数传递的语言,可以使用装饰器 阅读全文
posted @ 2019-04-26 02:22 anobscureretreat 阅读(2009) 评论(0) 推荐(0)
摘要: >>> l=[1,2,3,4,2,2,2] >>> list(set(l)) [1, 2, 3, 4] >>> 阅读全文
posted @ 2019-04-26 02:20 anobscureretreat 阅读(306) 评论(0) 推荐(0)
摘要: GIL 是python的全局解释器锁,同一进程中假如有多个线程运行,一个线程在运行python程序的时候会霸占python解释器(加了一把锁即GIL),使该进程内的其他线程无法运行,等该线程运行完后其他线程才能运行。如果线程运行过程中遇到耗时操作,则解释器锁解开,使其他线程运行。所以在多线程中,线程 阅读全文
posted @ 2019-04-26 02:18 anobscureretreat 阅读(136) 评论(0) 推荐(0)
摘要: 输出 阅读全文
posted @ 2019-04-26 01:18 anobscureretreat 阅读(335) 评论(0) 推荐(0)
摘要: https://pan.baidu.com/s/1gfO5KOV 阅读全文
posted @ 2019-04-26 00:40 anobscureretreat 阅读(339) 评论(0) 推荐(0)
摘要: switch(update_state) { case 1: switch(num){ case 12: window.progressn=num $('#h_progress_bar .ui-progress').animateProgress(window.progressn,v,function() { }); ... 阅读全文
posted @ 2019-04-25 12:24 anobscureretreat 阅读(93) 评论(0) 推荐(0)
摘要: //字符串var day="dd";switch (day){case "dd": x="day it's dd"; break;case "ff": x="day it's ff"; break;default: x="day is default";} 输出 阅读全文
posted @ 2019-04-25 12:24 anobscureretreat 阅读(5749) 评论(0) 推荐(0)
摘要: 输出 例子 输出 阅读全文
posted @ 2019-04-25 00:03 anobscureretreat 阅读(1747) 评论(0) 推荐(0)
摘要: 或者 阅读全文
posted @ 2019-04-24 23:58 anobscureretreat 阅读(432) 评论(0) 推荐(0)
摘要: if(pro==0){ if(fla==0){ console.log("%0 pass") }else{ $('#h_progress_bar .ui-progress').animateProgress(0,v,function() { fla=0; }); } }else if(pro==1){ ... 阅读全文
posted @ 2019-04-24 23:47 anobscureretreat 阅读(409) 评论(0) 推荐(0)
摘要: //for 循环 //forEach //for in 循环对象 //在ES6中,增加了一个for of循环 //Map,Set,for of //原生javascript遍历 //forEach() 方法对数组的每个元素执行一次提供的函数。总是返回undefined;//map() 方法创建一个新 阅读全文
posted @ 2019-04-24 23:46 anobscureretreat 阅读(213) 评论(0) 推荐(0)
摘要: 例子 例子 阅读全文
posted @ 2019-04-24 23:41 anobscureretreat 阅读(133) 评论(0) 推荐(0)
摘要: window.a=12; 阅读全文
posted @ 2019-04-24 23:39 anobscureretreat 阅读(108) 评论(0) 推荐(0)
摘要: //延时器,2秒后执行函数 阅读全文
posted @ 2019-04-24 23:38 anobscureretreat 阅读(5254) 评论(0) 推荐(0)
摘要: //定时器间隔0.5s,启动定时器后,等待3s 输出 阅读全文
posted @ 2019-04-24 23:36 anobscureretreat 阅读(209) 评论(0) 推荐(0)
摘要: 输出 输出 阅读全文
posted @ 2019-04-24 23:31 anobscureretreat 阅读(10495) 评论(0) 推荐(0)
摘要: 获得后台进程返回值我们用“&”把进程放入后台以后,如果需要了解进程的执行情况,可以使用wait函数。默认情况下wait会等待任意子进程结束但是不会返回子进程的返回值。而以子进程的pid作为参数调用wait时,wait便能够返回该子进程的退出状态了。 阅读全文
posted @ 2019-04-23 23:59 anobscureretreat 阅读(2751) 评论(0) 推荐(0)
摘要: test.sh 执行 输出 阅读全文
posted @ 2019-04-23 23:58 anobscureretreat 阅读(169) 评论(0) 推荐(0)
摘要: 例子 例子 例子 例子 阅读全文
posted @ 2019-04-23 23:55 anobscureretreat 阅读(240) 评论(0) 推荐(0)
摘要: test.py: test.sh: 输出: 阅读全文
posted @ 2019-04-23 23:53 anobscureretreat 阅读(347) 评论(0) 推荐(0)
摘要: 2>&1的意思就是将标准错误也输出到标准输出当中. 阅读全文
posted @ 2019-04-23 23:50 anobscureretreat 阅读(226) 评论(0) 推荐(0)
摘要: >/dev/null 2>&1,将标准输出和错误输出到输入至/dev/null 阅读全文
posted @ 2019-04-23 23:50 anobscureretreat 阅读(107) 评论(0) 推荐(0)
摘要: 例子 输出 例子 输出 例子 输出 例子 输出 例子 输出 例子 输出 阅读全文
posted @ 2019-04-23 11:23 anobscureretreat 阅读(153) 评论(0) 推荐(0)
摘要: 官网地址:https://helpx.adobe.com/cn/premiere-pro/using/default-keyboard-shortcuts-cc.html?mv=product&mv2=pr# 快捷键大全 Windows:https://helpx.adobe.com/cn/prem 阅读全文
posted @ 2019-04-23 02:14 anobscureretreat 阅读(851) 评论(0) 推荐(0)
摘要: 链接:https://pan.baidu.com/s/14p1qj6pI1F3SP1SG4TUFHA 密码:seug 阅读全文
posted @ 2019-04-21 22:37 anobscureretreat 阅读(387) 评论(0) 推荐(0)
摘要: 不写就行了 阅读全文
posted @ 2019-04-20 19:30 anobscureretreat 阅读(575) 评论(0) 推荐(0)
摘要: 答案是A。 其实 Array.prototype 也是一个数组。 阅读全文
posted @ 2019-04-20 18:03 anobscureretreat 阅读(411) 评论(0) 推荐(0)
摘要: 答案是C。 -9 % 2 = -1 以及 Infinity % 2 = NaN,求余运算符会保留符号,所以只有 isEven 的判断是可靠的。 阅读全文
posted @ 2019-04-20 17:47 anobscureretreat 阅读(628) 评论(0) 推荐(0)
摘要: Infinity 属性用于存放表示正无穷大的数值。 说明 无法使用 for/in 循环来枚举 Infinity 属性,也不能用 delete 运算符来删除它。 Infinity 不是常量,可以把它设置为其他值。 输出 阅读全文
posted @ 2019-04-20 17:42 anobscureretreat 阅读(502) 评论(0) 推荐(0)
摘要: 答案是C。 答案是A。 在 switch 内部使用严格相等 进行判断,并且 new String("A") 返回的是一个对象,而 String("A") 则是直接返回字符串 "A"。 new String()生成的是一个字符串对象 String生成的是一个字符串 阅读全文
posted @ 2019-04-20 15:32 anobscureretreat 阅读(3002) 评论(0) 推荐(0)
摘要: 双精度浮点数格式,即IEEE 754标准 阅读全文
posted @ 2019-04-20 15:11 anobscureretreat 阅读(610) 评论(0) 推荐(0)
摘要: 答案是D 输出 阅读全文
posted @ 2019-04-20 15:04 anobscureretreat 阅读(291) 评论(0) 推荐(0)
摘要: 答案是C。 例子 例子 阅读全文
posted @ 2019-04-20 14:58 anobscureretreat 阅读(2557) 评论(0) 推荐(0)
上一页 1 ··· 36 37 38 39 40 41 42 43 44 ··· 68 下一页