上一页 1 ··· 5 6 7 8 9 10 11 12 13 下一页
摘要: 如果需要更精确的说法,\b 匹配这样的位置:它的前一个字符和后一个字符必须是\w (字母数字)和 \W (非字母数字),即匹配必须出现在 \w (字母数字)和 \W (非字母数字)字符之间的边界上 就用 "It's a nice day today." 举例说明: 正确的正则:\bnice\b 分析 阅读全文
posted @ 2019-11-14 17:26 zdcsmart 阅读(198) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/u010188178/article/details/83581506 阅读全文
posted @ 2019-11-14 16:46 zdcsmart 阅读(92) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qmdweb/article/details/83115596 阅读全文
posted @ 2019-11-14 13:17 zdcsmart 阅读(454) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/kevingrace/p/8072860.html 当你登录并且登录shell是bash时,bash首先执行/etc/profile文件中的命令(如果该文件存在),然后它顺序寻找~ /.bash_profile,~/.bash_login或~/.pro 阅读全文
posted @ 2019-11-13 23:36 zdcsmart 阅读(103) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/dylancao/p/10234094.html 阅读全文
posted @ 2019-11-13 23:09 zdcsmart 阅读(92) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/adbc6753aa32 阅读全文
posted @ 2019-11-13 22:56 zdcsmart 阅读(214) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_40655220/article/details/83002055 阅读全文
posted @ 2019-11-13 20:33 zdcsmart 阅读(81) 评论(0) 推荐(0) 编辑
摘要: https://www.oldboyedu.com/zuixin_wenzhang/index/id/540.html https://blog.csdn.net/loner_fang/article/details/80877491 https://blog.csdn.net/weixin_421 阅读全文
posted @ 2019-11-13 13:20 zdcsmart 阅读(148) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/ydpvictor/archive/2012/09/09/2677260.html 阅读全文
posted @ 2019-11-13 00:07 zdcsmart 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 本区别:进程是操作系统资源分配的基本单位,而线程是任务调度和执行的基本单位 在开销方面:每个进程都有独立的代码和数据空间(程序上下文),程序之间的切换会有较大的开销;线程可以看做轻量级的进程,同一类线程共享代码和数据空间,每个线程都有自己独立的运行栈和程序计数器(PC),线程之间切换的开销小。 所处 阅读全文
posted @ 2019-11-12 00:57 zdcsmart 阅读(90) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 下一页