# Holding your objectsJava provides a number of
ways to hold objects :>1. An array associates numberical indexes to objects.
It holds objects of a kno...
分类:
其他好文 时间:
2014-04-28 12:41:47
阅读次数:
445
RHEL克隆虚拟机后改变网卡地址(一)更改hostname# vi /etc/sysconfig/network
NETWORKING=yes
HOSTNAME=your-vm-hostname-here
(二)更改网卡地址在使用virt-manager或virtual-box克隆了RHEL6的虚拟机之后,网卡地址需要手动更改。首先在virt-manager中查看虚拟机属性: View->De...
分类:
其他好文 时间:
2014-04-27 20:20:36
阅读次数:
652
这是一篇分享技巧的文章:使用myeclipse关联帮助文档
① 选中spring.jar
② 鼠标右击,选择properties,弹出框中选择Javadoc Location,找到对应的文档位置,OK
③ 选择spring.jar中的类
④ 按住F1,弹出一个help框,选择Java help:Javadoc for ‘xxx’...
分类:
编程语言 时间:
2014-04-27 20:13:34
阅读次数:
569
Logging.c:
/*
Copyright (c) 2008-2012 Red Hat, Inc.
This file is part of GlusterFS.
This file is licensed to you under your choice of the GNU Lesser
General Public License, version 3 or any...
分类:
其他好文 时间:
2014-04-27 18:57:31
阅读次数:
702
在Linux上启动VNC Server(如果没安装的话那就先安装)
执行vncserver命令:
[root@linux root]# vncserver
You will require a password to access your desktops.
Password: ----为了不想任何人都可以任意遥控此计算机。因此当第
Verify: ---1次启动VNC se...
分类:
系统相关 时间:
2014-04-27 18:33:08
阅读次数:
1009
迪米特法则(Law of Demeter)又叫作最少知识原则(Least Knowledge Principle 简写LKP),就是说一个对象应当对其他对象有尽可能少的了解,不和陌生人说话。英文简写为: LoD.
迪米特法则可以简单说成:talk only to your immediate friends。 对于面向OOD来说,又被解释为下面几种方式:一个软件实体应当尽可能少的与其他实...
分类:
其他好文 时间:
2014-04-27 18:00:46
阅读次数:
534