码迷,mamicode.com
首页 >  
搜索关键字:is == type    ( 51964个结果
Leetcode: Valid Parentheses
没考虑到的情况有:input: [, expected: false; 语法上也犯了错误: 我定义的stack的泛型为char,泛型不能为primitive datatype,Primitive types such ascharcannot be used as type parameters i...
分类:其他好文   时间:2014-05-09 09:19:01    阅读次数:252
工作中遇到一些不会写的样式
单词不换行 word-break:"break-all"text-overflow:ellipsis; 超出部分用...代替overflow:hidden;超出不分隐藏字体显示在一行 white-space:"nowrap"想要字体换行显示 max-height:""; 原价...
分类:其他好文   时间:2014-05-09 07:45:10    阅读次数:238
数据结构——栈的类定义和实现
#include#include#include #include //使用库函数exit()using namespace std;templateclass Stack{ private: Type*data; //栈元素数组 int maxSize; /...
分类:其他好文   时间:2014-05-09 07:27:40    阅读次数:294
c++类型转换Type Cast)
C风格的强制类型转换(Type Cast)很简单,不管什么类型的转换统统是:TYPE b = (TYPE)a。C++风格的类型转换提供了4种类型转换操作符来应对不同场合的应用。const_cast,字面上理解就是去const属性。static_cast,命名上理解是静态类型转换。如int转换成cha...
分类:编程语言   时间:2014-05-09 05:54:59    阅读次数:376
CONTAINING_RECORD 宏
CONTAINING_RECORD 这样的一个宏,我看了它的定义,如下:#define CONTAINING_RECORD(address, type, field) ((type *)( (PCHAR)(address) - (ULONG_PTR)(&((type*)0)->field)))cla...
分类:其他好文   时间:2014-05-09 04:21:01    阅读次数:330
截图Rectangle contructor with double type perameters with Jcrop for crop image
protected void btnCrop_Click(object sender, EventArgs e) { ...
分类:其他好文   时间:2014-05-09 04:02:32    阅读次数:335
Python学习笔记(1)(Data Types)
Data Types1,list 2,tuple 3,sets 4,dictionary,
分类:编程语言   时间:2014-05-09 03:21:50    阅读次数:244
OA权限树搭建 代码
${name} <input type="checkbox" name="pri...
分类:其他好文   时间:2014-05-09 01:29:57    阅读次数:273
kettle 使用excel模板导出数据
通过excel进行快速开发报表: 建设思路: 1.首先制订相关的execl模板。 2.通过etl工具(kettle)可以快速的 将数据库中的数据按excel模板导出成新的excel即可。 其中kettle 按excel模板导出excel 可以参考: http://type-exit.org/adventures-with-open-source-bi/2010/12/using...
分类:其他好文   时间:2014-05-09 01:22:42    阅读次数:311
视图的创建(根据已有的表)
Create View V_CouponTypeasSELECT CouponTypeId, CouponTypeNameFROM Gas_CN_Trade_B2C.dbo.CouponTypeWHERE (IsDeleted = 0)
分类:其他好文   时间:2014-05-08 23:04:27    阅读次数:332
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!