1、错误描写叙述Expression students is undefined on line 30, column 24 in student.ftl.The problematic instruction:----------==> list students as student [on l...
分类:
其他好文 时间:
2014-07-07 10:04:17
阅读次数:
371
我的理解是:通过继承实现的不同对象调用相同的方法,表现出不同的行为,称之为多态. 1: OverRide 实现多态 1 public class Animal 2 { 3 public virtual void Eat() 4 { 5 ...
分类:
其他好文 时间:
2014-07-07 00:44:06
阅读次数:
283
最近使用了窗口关闭事件:void QWidget::closeEvent ( QCloseEvent * event ) [virtual protected]当用鼠标点击关闭按钮或者在任务栏上右击关闭,都会触发这一事件,实现效果如下:附上实现代码:这是主界面的关闭事件(CallTrace为主界面)...
分类:
其他好文 时间:
2014-07-03 22:19:23
阅读次数:
308
微软官方有一套专门用于SharePoint 2010, Exchange 2010 Demo的虚拟机:SharePoint 2010: Information Worker Demonstration and Evaluation Virtual Machine。很多官方的教程和示列都是基于这个De...
分类:
其他好文 时间:
2014-07-03 19:54:47
阅读次数:
314
《Windows Azure Platform 系列文章目录》 1.Microsoft Azure是否由System Center和Hyper-V构成? Microsoft Azure虽然支持Hyper-V的VHD直接上传至Azure云端进行管理,但是Azure底层技术是微软自己研发的、独有...
(转自:http://blog.csdn.net/marshalchen/article/details/6552103)select * from user_tab_cols where column_name=upper('xxxxx');查询哪些表中有某一列select status from...
分类:
数据库 时间:
2014-07-02 20:56:58
阅读次数:
457
1、查看机器型号 [root@local ~]# dmidecode | grep "Product Name" Product Name: VMware Virtual Platform Product Name: 440BX Desktop Reference Platform2、查询Linux...
分类:
系统相关 时间:
2014-07-02 20:12:21
阅读次数:
310
去除CDockablePane的隐藏、关闭、拖动、浮动风格在头文件里重载virtual BOOL CanBeClosed() const { return FALSE; }virtual BOOL CanAutoHide() const { return FALSE; }virtual BOOL F...
分类:
其他好文 时间:
2014-07-02 13:53:59
阅读次数:
426
游戏中的人物伤害值计算问题。
(一)方法(1):一般来讲可以使用虚函数的方法:
class GameCharacter {
public:
virtual int healthValue() const; //返回人物的体力值,派生类可以做出修改
...
}; 这确实是一个显而易见的设计选择。但因为这样的设计过于显而易见,可能不会...
分类:
编程语言 时间:
2014-07-01 15:39:40
阅读次数:
172
本章以山寨版Twitter为例介绍HBase Schema设计模式。广义的HBase Schema设计不只包括创建表时指定项,还应该综合考虑Column families/Column qualifier/Cell value/Versions/Rowkey等相关内容。
灵活的Schema&简单的存储视图
Schema设计和数据存储及访问模式关系密切,先回顾下HBase数据模型,有几个要点:...
分类:
其他好文 时间:
2014-07-01 14:35:30
阅读次数:
343