上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页
该文被密码保护。 阅读全文
posted @ 2019-08-03 08:30 DDiamondd 阅读(1) 评论(0) 推荐(0) 编辑
摘要: sleep() 属于Thread的方法,不释放锁,自动唤醒或者interrupt打断 wait() 属于Object的方法,释放锁,不会被自动唤醒,用notify() or notifyall()唤醒 notify() / notifyall() 唤醒 任意一个 / 全部 在此对象上等待的线程 Wa 阅读全文
posted @ 2019-08-02 20:12 DDiamondd 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 属于本地方法 /** * A hint to the scheduler that the current thread is willing to yield * its current use of a processor. The scheduler is free to ignore thi 阅读全文
posted @ 2019-08-02 20:02 DDiamondd 阅读(1004) 评论(2) 推荐(0) 编辑
摘要: http://blog.itpub.net/31555134/viewspace-2221319/ 一直对join()方法不是很理解,在A线程中, B线程调用了join()方法,然后在内部实际是wait()方法,但是在效果上是A线程一直在等待,对wait()方法的调用不是很理解。(希望有朋友能够给我 阅读全文
posted @ 2019-08-02 19:36 DDiamondd 阅读(1139) 评论(0) 推荐(0) 编辑
摘要: Thread本身是一个类,其run(): 正常情况下, target(即传入的new Runnable()对象)不为空,就是执行target里面的run方法 但是,重新run()方法之后,就不会在执行target.run(),除非显示调用: super.run() 阅读全文
posted @ 2019-07-27 16:14 DDiamondd 阅读(655) 评论(0) 推荐(0) 编辑
摘要: 文本内容:data(包含很多条文本) 1、分词: 2、去除停用词: stoplist.txt:链接:https://pan.baidu.com/s/1lN1J8aUFOwqXpYMzuqVA7w 提取码:nk7z 3、 4、绘制 阅读全文
posted @ 2019-07-14 08:53 DDiamondd 阅读(462) 评论(0) 推荐(0) 编辑
摘要: 数据: data 字段:col 要删除的内容是 col == False 的行 阅读全文
posted @ 2019-07-13 14:04 DDiamondd 阅读(12503) 评论(0) 推荐(0) 编辑
摘要: 链接:https://pan.baidu.com/s/1uBjLC61xm4tQ9raDa_M1wQ 提取码:f7l1 推荐:https://blog.csdn.net/longgb123/article/details/78154295 阅读全文
posted @ 2019-07-07 15:24 DDiamondd 阅读(629) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-06-23 19:35 DDiamondd 阅读(3535) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/sun_hj_95/article/details/79488583 在MySQL中插入中文后,显示如下: 解决方案: 在my.ini (在MySQL的安装目录下)文件中修改如下:把utf8 改为 gbk 若没有生效,重启服务试试 阅读全文
posted @ 2019-06-23 16:18 DDiamondd 阅读(1583) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页
TOP