原文地址:http://www.cnblogs.com/liuzhuo/archive/2010/08/15/eclipse_plugin_1_1_1.html 在Eclipse中使用PDE(Plugin Development Environment)进行插件开发。在PDE中为大家准备了几个模板供... ...
分类:
系统相关 时间:
2017-05-20 14:57:46
阅读次数:
240
英文原题 Problem Description Astronomers often examine star maps where stars are represented by points on a plane and each star has Cartesian coordinates. ...
分类:
编程语言 时间:
2017-05-20 13:53:47
阅读次数:
166
1.apache2的配置 首先要配置好apache2,如果未配置,请参考我之前的博文:lamp的配置 2.域名的解析 将全部域名的www和@的A记录解析到云服务器的IP 3.虚拟主机的配置 1.配置httpd.conf 如果etc/httpd/conf/httpd.conf存在,则配置此httpd. ...
分类:
Web程序 时间:
2017-05-20 12:31:26
阅读次数:
170
最近工作中用到了jsp的自定义标签。在前台使用较少的代码。即可实现强大的功能,于是通过查询相关资料做了一个访问数据的自定义标签。通过实例了解自定义标签的功能。 实例来源慕课网 参考资料:http://www.cnblogs.com/shanheyongmu/p/5940945.html 创建自定义类 ...
分类:
Web程序 时间:
2017-05-20 11:22:41
阅读次数:
153
笔者运行环境: 1. windows 10 2. cygwin,安装openssh 3. git版本 2.11.0 前置操作,如果已经配置可以略过 1. cygwin下执行 ssh-keygen -t rsa 后一路回车 2. cat ~/.ssh/id_rsa.pub 得到公钥key 3. git ...
分类:
其他好文 时间:
2017-05-20 01:11:18
阅读次数:
172
将新的节点插入双向链表的时候: iterator insert(iterator itr,const Object & x)//向双向链表中插入一个x节点 { Node *p = itr.current; theSize++; return iterator(p->prev = p->prev->n ...
分类:
编程语言 时间:
2017-05-20 00:06:57
阅读次数:
219
public class PlaneMove : MonoBehaviour { //h:水平方向的控制,v:前后方向的控制 float h,v; //Speed:飞机的飞行速度 public float Speed; // Use this for initialization void Star ...
分类:
移动开发 时间:
2017-05-20 00:02:22
阅读次数:
259
Tomya is a girl. She loves Chef Ciel very much. Tomya like a positive integer p, and now she wants to get a receipt of Ciel's restaurant whose total p ...
分类:
其他好文 时间:
2017-05-19 19:29:59
阅读次数:
230
什么是可重入锁,不可重入锁呢?"重入"字面意思已经非常明显了,就是能够又一次进入。可重入锁,就是说一个线程在 获取某个锁后,还能够继续获取该锁,即同意一个线程多次获取同一个锁。比方synchronized内置锁就是可重入的 ,假设A类有2个synchornized方法method1和method2, ...
分类:
其他好文 时间:
2017-05-19 18:33:20
阅读次数:
97
进程:每个进程拥有自己的一整套变量 线程:共享数据 调用Thread.sleep不会创建一个新的线程,sleep是Thread类的静态方法,用于暂停当前线程。 定义线程建议通过Runnable接口,继承Thread无法继承其它的类。 线程的stop方法已经被弃用。请求线程终止,使用interrupt ...
分类:
编程语言 时间:
2017-05-19 17:50:12
阅读次数:
231