1、数据类型(类) 对象名; 这里要求数据类型必须为复合数据类型,基本数据类型声明的结构只能称为变量,而不能称为对象。 对象的初始化 对象名= new 构造方法(参数);2、方法: 访问控制符 [修饰符] 返回值类型 方法名称(参数列表){ 方法体 }3、类: 访问控制符 [修饰符]...
分类:
编程语言 时间:
2015-08-28 19:27:23
阅读次数:
128
var oIframe=document.getElementById('iframe1'); 获取iframe对象; oIframe.contentWindow.// iframe 里的window对象 oIframe.contentDocument.//ifram里的document对象从if....
分类:
其他好文 时间:
2015-08-28 19:28:03
阅读次数:
133
刚才看这段代码的时候:procedure TControl.SetBounds(ALeft, ATop, AWidth, AHeight: Integer);begin if CheckNewSize(AWidth, AHeight) and ((ALeft FLeft) or (ATop...
分类:
编程语言 时间:
2015-08-28 19:25:58
阅读次数:
173
DescriptionSome positive integers can be represented by a sum of one or more consecutive prime numbers. How many such representations does a given pos...
分类:
其他好文 时间:
2015-08-28 19:27:36
阅读次数:
137
using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Mvc;namespace MvcForLamadaToTableJion.Controllers{ ....
分类:
其他好文 时间:
2015-08-28 19:25:36
阅读次数:
3256
用Runtime写的分类:https://github.com/ISMeSAM/-tabBarItem-badgeValue-https://github.com/ISMeSAM/SAMUIAlertViewExhttps://github.com/ISMeSAM/RemoveButtonHighl...
分类:
其他好文 时间:
2015-08-28 19:25:49
阅读次数:
97
稍微用脑子想了一下,图形控件没有句柄,因此先把自己的坐标改一改,然后只要把父控件的某些区域Invalidate一下就可以了,WM_PAINT消息一来,父控件就会重绘所有子图形控件,就达到了相应的效果。怪不得没看到调用SetWindowPos这样的函数。有空详细跟踪一下。举例:procedure TF...
分类:
其他好文 时间:
2015-08-28 19:26:46
阅读次数:
144
C++手册之deque所属头文件 常用操作:back()返回尾部元素;front()返回头部元素;push_back()尾部插入元素;pop_bakc()尾部删除元素;push_front()头部插入元素;pop_front()头部删除元素;问题1:求滑动窗口的最大值(《剑指offer面试题65》)...
分类:
编程语言 时间:
2015-08-28 19:25:30
阅读次数:
179
要在ASP.NET MVC站点上做excel导出功能,但是要导出的excel文件比较大,有几十M,所以导出比较费时,为了不影响对界面的其它操作,我就采用异步的方式,后台开辟一个线程将excel导出到指定目录,然后提供下载。效果如下:选中了多行,会导出多个工作簿sheet,一个汇总的,其他的就是明细数...
分类:
Web程序 时间:
2015-08-28 19:27:39
阅读次数:
139
微软 BI 系列随笔 - SSIS 2012 高级应用 -Script Component处理不规则平面文件场景介绍在使用SSIS从平面文件导入源数据时,最常遇到的是以下两种情况:导入规则的平面文件,这种文件的每一行数据的解析规则都是一样的导入不规则的平面文件,这种文件可能包含多种数据结构,比如某些...
分类:
其他好文 时间:
2015-08-28 19:26:26
阅读次数:
128
#include#include#includeusing namespace std;templateclass stack{private: T* base; T* top; int stackSize;public: stack(int a=100):stackSize...
分类:
其他好文 时间:
2015-08-28 19:25:03
阅读次数:
129
图片上传ENCTYPE="multipart/form-data"
分类:
Web程序 时间:
2015-08-28 19:25:32
阅读次数:
246
CRefreshLayout介绍:文字碎片效果的下拉刷新,可以自定义refresh view ,类似与ios上的CBStoreHouseRefreshControlhttp://itlanbao.com/code/20150816/10000/100433.html运行效果:相关代码FlyRefre...
分类:
其他好文 时间:
2015-08-28 19:25:24
阅读次数:
113
Friday the ThirteenthIs Friday the 13th really an unusual event?That is, does the 13th of the month land on a Friday less often than on any other day ...
分类:
其他好文 时间:
2015-08-28 19:24:15
阅读次数:
165
Ugly Number IIWrite a program to find then-th ugly number.Ugly numbers are positive numbers whose prime factors only include2, 3, 5. For example,1, 2,...
分类:
其他好文 时间:
2015-08-28 19:26:02
阅读次数:
125
废话不多说.直奔主题.1.安装node.别问为什么.如果你不知道,说了你还是不知道.别问怎么安装,自己去百度.2.安装grunt_CLI.安装完node,并且安装成功了,后.下载grunt_Cli.看到如上界面,说明安装成功了.查看grunt版本.3.在F盘新建grunt目录目录里面新建如下文件,和...
分类:
其他好文 时间:
2015-08-28 19:23:28
阅读次数:
134