1. 修改元素值 second_node.set_value("miller");不对 必须second_node.first_child().set_value("miller");2. 小例子#include #include "pugixml.hpp"#include using names....
分类:
其他好文 时间:
2014-09-16 12:17:50
阅读次数:
311
Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.思路:增加一个头指...
分类:
其他好文 时间:
2014-09-15 22:38:49
阅读次数:
217
观察者设计模式的定义:定义了对象之间的一对多依赖,这样一来,当一个对象改变状态时,它的所有依赖者都会收到通知并自动更新。
面向对象设计原则:为交互对象之间的松耦全设计而努力
松耦合的好处:
一、是它适应变化的灵活性;
二、是当某个服务的内部结构和实现逐渐发生改变时,不影响其他服务
参考书籍:《Head First 设计模式》...
分类:
移动开发 时间:
2014-09-15 21:23:39
阅读次数:
256
策略模式的定义:定义算法族,分别封装起来,让它们之间可以互相替换,此模式让算法的变化独立于使用算法的客户。
面向对象设计原则:
封装变化
多用组合,少用继承
针对接口编程,不针对实现编程
参考书籍:《Head First 设计模式》...
分类:
移动开发 时间:
2014-09-15 21:23:09
阅读次数:
276
选择器语法 说明$(“*”) 选择所以元素$(this) 选择当前元素$(“p.intro”) 选项所有class=intro的p元素$(“p:first”) 选择第一个p元素 www.2cto.com$(“ul li:first”) 选择第一个元素的第一个元素$(“ul li:first-chil...
分类:
Web程序 时间:
2014-09-15 17:27:59
阅读次数:
247
原文出处:http://www.asp.net/mvc/tutorials/mvc-4/getting-started-with-aspnet-mvc4/adding-a-model EntityFramework(简称EF),支持Code First开发方法。三种开发方法数据库优先(Databas...
分类:
Web程序 时间:
2014-09-15 17:15:19
阅读次数:
301
创建表:
create table EMPLOYEE (
id INT NOT NULL auto_increment,
first_name VARCHAR(20) default NULL,
last_name VARCHAR(20) default NULL,
salary INT default NULL,
PRIMARY KEY (id)
);...
分类:
移动开发 时间:
2014-09-15 16:01:19
阅读次数:
321
Problem Description
[img]http://acm.hdu.edu.cn/data/images/C235-1007-1.jpg[/img] Since 1945, when the first nuclear bomb was exploded by the Manhattan Project team in the US, the number of nuclear we...
分类:
其他好文 时间:
2014-09-15 15:57:19
阅读次数:
216
FOR i IN tRange1.first .. tRange1.last LOOP IF Instr(CardNum, tRange1(i), 1) = 1 THEN GLOBAL_VARBLE.nPos1 := i; Result := tBankName1(i); EXI...
分类:
其他好文 时间:
2014-09-15 15:41:49
阅读次数:
211
p:before{content:"开始+";}//在p标签内容之前插入内容p:after{content:"←结束";}//在p标签内容结束之后添加p:first-child{ color:#FC6;}//符合条件的第一个子元素p:last-child{color:#3F3;}//最后一个子元.....
分类:
Web程序 时间:
2014-09-15 14:09:08
阅读次数:
222