using System;using
System.Collections.Generic;using System.Linq;using System.Text;using
Microsoft.Office.Interop.Excel;namespace Reuters.ProcessQualit...
分类:
其他好文 时间:
2014-05-16 19:54:35
阅读次数:
286
control.ascx using System;using
System.Collections.Generic;using System.Linq;using System.Web;using
System.Web.UI;using System.Web.UI.WebControls...
分类:
Web程序 时间:
2014-05-16 08:36:25
阅读次数:
362
--创建一个表,此表作为子表
create table fk_t as select *from user_objects;
delete from fk_t where object_id is null;
commit;
--创建一个表,此表作为父表
create table pk_t as select *from user_objects;
delete from p...
分类:
数据库 时间:
2014-05-15 11:17:07
阅读次数:
248
在引入有些第三方的时候,会出现如上图的错误当然了有些错误不可避免,特别是有些比较强大的第三方,为什么呢,其实仔细看看出错的原因就不难找到错误,有些第三方功能之所以强大在与起封装了许多第三方,如果它有用到有些第三方,而你再次引用就会出现引用符号重复的问题,会报错:
具体的原因不一:就我出的错而言就是jsonkit重复引用,json解析其实有四种:包括原生的NSJSONSerialization,T...
分类:
Web程序 时间:
2014-05-15 06:45:11
阅读次数:
448
下面是标准库STL中allocator的实现
template
class allocator
: public _Allocator_base
{ // generic allocator for objects of class _Ty
public:
typedef allocator other;
typedef _Allocator_base _Mybase;
t...
分类:
其他好文 时间:
2014-05-15 05:05:57
阅读次数:
385
在学习简单工厂模式之前让我们先看看不用简单工厂模式所带来的不便把,我们以一个四则运算的计算器为例逐步的进行说明问题,首先先看看用面向程序的思想实现计算器的过程using
System;using System.Collections.Generic;using System.Linq;using S...
分类:
其他好文 时间:
2014-05-14 13:00:49
阅读次数:
244
摘要:silverlight是微软公司全力打造的一种跨平台、跨浏览器的RIA新技术,silverlight以XAML为界面呈现语言,支持2D矢量图形、动画、数据绑定、控件风格与模板、LINQ、WCF、JSON、Socket和跨域访问等高级特性,对于互联网用户来说,Silverlight是一个安装简单...
分类:
Web程序 时间:
2014-05-14 12:07:14
阅读次数:
369
MotivationWe can not talk about Object Oriented
Programming without considering the state of the objects. After all object
oriented programming is abo...
分类:
其他好文 时间:
2014-05-14 10:51:18
阅读次数:
354
LINQ:Language INtegrated
Query,语言集成查询。以下内容演示如何利用LINQ进行增加,修改,删除和查询操作,针对数据库。首先创建Linq
Class。添加数据库信息,直接Add一个Connection,输入服务器和登录ID,测试连接成功。现在可以看到数据库里面的信息了,比...
分类:
其他好文 时间:
2014-05-13 20:46:42
阅读次数:
333
一个空的class:如class X{}
;sizeof(X)==1;sizeof为什么为1,他有一个隐晦的1
byte,那是被编译器安插进去的一个char,这使得class2的两个objects得以在内存中配置独一无二的地址:X
a,b;if(&a==&b) cerrx+=pt.x;this-> ...
分类:
编程语言 时间:
2014-05-13 19:18:24
阅读次数:
405