会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
DDiamondd
博客园
首页
新随笔
联系
管理
上一页
1
2
3
4
5
6
7
8
9
···
11
下一页
2019年8月3日
join
该文被密码保护。
阅读全文
posted @ 2019-08-03 08:30 DDiamondd
阅读(1)
评论(0)
推荐(0)
2019年8月2日
线程中常用的一些方法
摘要: sleep() 属于Thread的方法,不释放锁,自动唤醒或者interrupt打断 wait() 属于Object的方法,释放锁,不会被自动唤醒,用notify() or notifyall()唤醒 notify() / notifyall() 唤醒 任意一个 / 全部 在此对象上等待的线程 Wa
阅读全文
posted @ 2019-08-02 20:12 DDiamondd
阅读(223)
评论(0)
推荐(0)
线程中的yield()
摘要: 属于本地方法 /** * 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
阅读(1014)
评论(2)
推荐(0)
线程中的join()
摘要: http://blog.itpub.net/31555134/viewspace-2221319/ 一直对join()方法不是很理解,在A线程中, B线程调用了join()方法,然后在内部实际是wait()方法,但是在效果上是A线程一直在等待,对wait()方法的调用不是很理解。(希望有朋友能够给我
阅读全文
posted @ 2019-08-02 19:36 DDiamondd
阅读(1154)
评论(0)
推荐(0)
2019年7月27日
Thread对象 既传入了Runnable对象又重写了run()方法
摘要: Thread本身是一个类,其run(): 正常情况下, target(即传入的new Runnable()对象)不为空,就是执行target里面的run方法 但是,重新run()方法之后,就不会在执行target.run(),除非显示调用: super.run()
阅读全文
posted @ 2019-07-27 16:14 DDiamondd
阅读(659)
评论(0)
推荐(0)
2019年7月14日
Python 绘制词云
摘要: 文本内容:data(包含很多条文本) 1、分词: 2、去除停用词: stoplist.txt:链接:https://pan.baidu.com/s/1lN1J8aUFOwqXpYMzuqVA7w 提取码:nk7z 3、 4、绘制
阅读全文
posted @ 2019-07-14 08:53 DDiamondd
阅读(479)
评论(0)
推荐(0)
2019年7月13日
Python 删除满足条件的某些行
摘要: 数据: data 字段:col 要删除的内容是 col == False 的行
阅读全文
posted @ 2019-07-13 14:04 DDiamondd
阅读(12516)
评论(0)
推荐(0)
2019年7月7日
HMM实现中文分词
摘要: 链接:https://pan.baidu.com/s/1uBjLC61xm4tQ9raDa_M1wQ 提取码:f7l1 推荐:https://blog.csdn.net/longgb123/article/details/78154295
阅读全文
posted @ 2019-07-07 15:24 DDiamondd
阅读(660)
评论(0)
推荐(0)
2019年6月23日
在jsp中显示List中的数据
摘要:
阅读全文
posted @ 2019-06-23 19:35 DDiamondd
阅读(3546)
评论(0)
推荐(0)
MySQL 插入中文后,显示为空白
摘要: https://blog.csdn.net/sun_hj_95/article/details/79488583 在MySQL中插入中文后,显示如下: 解决方案: 在my.ini (在MySQL的安装目录下)文件中修改如下:把utf8 改为 gbk 若没有生效,重启服务试试
阅读全文
posted @ 2019-06-23 16:18 DDiamondd
阅读(1604)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
9
···
11
下一页
公告
TOP