该文被密码保护。 阅读全文
摘要:
sleep() 属于Thread的方法,不释放锁,自动唤醒或者interrupt打断 wait() 属于Object的方法,释放锁,不会被自动唤醒,用notify() or notifyall()唤醒 notify() / notifyall() 唤醒 任意一个 / 全部 在此对象上等待的线程 Wa 阅读全文
摘要:
属于本地方法 /** * 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 阅读全文
摘要:
http://blog.itpub.net/31555134/viewspace-2221319/ 一直对join()方法不是很理解,在A线程中, B线程调用了join()方法,然后在内部实际是wait()方法,但是在效果上是A线程一直在等待,对wait()方法的调用不是很理解。(希望有朋友能够给我 阅读全文
摘要:
Thread本身是一个类,其run(): 正常情况下, target(即传入的new Runnable()对象)不为空,就是执行target里面的run方法 但是,重新run()方法之后,就不会在执行target.run(),除非显示调用: super.run() 阅读全文
摘要:
文本内容:data(包含很多条文本) 1、分词: 2、去除停用词: stoplist.txt:链接:https://pan.baidu.com/s/1lN1J8aUFOwqXpYMzuqVA7w 提取码:nk7z 3、 4、绘制 阅读全文
摘要:
数据: data 字段:col 要删除的内容是 col == False 的行 阅读全文
摘要:
链接:https://pan.baidu.com/s/1uBjLC61xm4tQ9raDa_M1wQ 提取码:f7l1 推荐:https://blog.csdn.net/longgb123/article/details/78154295 阅读全文