2013年5月25日

Java多线程的同步问题

摘要: 在多线程的编程环境中,可能会有两个或者更多的线程试图同时访问一个有限的资源。必须对这种潜在的资源冲突进行预防。 解决办法:在线程使用一个资源的时候,我们为其加锁即可。访问资源的第一个线程为其加上锁以后,其它线程便不能访问那个资源,除非获得那个资源的线程对其解锁! 1、使用synchroniz... 阅读全文

posted @ 2013-05-25 16:58 吴一达 阅读(181) 评论(0) 推荐(0)

linux:RealVNC安装使用释疑

摘要: Applicable software All the information in this Guide applies to connections established between a client computer running the latest version ... 阅读全文

posted @ 2013-05-25 09:47 吴一达 阅读(934) 评论(0) 推荐(0)

linux:TeamViewer安装使用详解

摘要: How do I install TeamViewer on my Linux distribution? Graphical installation For installing TeamViewer, we recommend using the graphical installe... 阅读全文

posted @ 2013-05-25 09:32 吴一达 阅读(1529) 评论(0) 推荐(0)

linux:软件包管理器Yum

摘要: Yum(全称为 Yellow dog Updater, Modified)是一个在Fedora和RedHat以及SUSE、CentOS中的Shell前端软件包管理器。基於RPM包管理,能够从指定的服务器自动下载RPM包并且安装,可以自动处理依赖性关系,并且一次安装所有依赖的软件包,无须繁琐地一次... 阅读全文

posted @ 2013-05-25 09:18 吴一达 阅读(186) 评论(0) 推荐(0)

导航