码迷,mamicode.com
首页 >  
搜索关键字:cast    ( 1368个结果
C++ string 转 char *
一、data string str = "abc"; char *p = const_cast(str.data()); 二、c_str string str = "gdfd"; char *p = const_cast(str.c_str()); 三、...
分类:编程语言   时间:2014-08-21 11:23:23    阅读次数:219
C++笔记
const_cast(expression)该运算符用来修改类型的const或volatile属性。除了const 或volatile修饰之外, type_id和expression的类型是一样的。一、常量指针被转化成非常量的指针,并且仍然指向原来的对象;二、常量引用被转换成非常量的引用,并且仍然指...
分类:编程语言   时间:2014-08-20 19:26:52    阅读次数:223
C++ 中dynamic_cast<>的用法
/*这是从网上摘下的样例,主要讲述了 dynamic_cast 的用法。*/ /* 作用:将一个基类对象指针(或引用)cast到继承类指针,dynamic_cast会依据基类指针是否真正指向继承类指针来做对应处理, 即会作一定的推断。 对指针进行dynamic_cast,失败返回null,成功返.....
分类:编程语言   时间:2014-08-20 19:25:42    阅读次数:214
C和C++运算符 (转)
这里是C和C++语言的运算符列表。所有列出的运算符皆含纳于C++;第三个栏目里的内容也使用C来描述。应当注意的是C不支持运算符重载。下列运算符在两个语言中都是顺序点(运算符未重载时):&&、||、?:和,(逗号运算符)。C++也包含类型转换运算符const_cast、static_cast、dyna...
分类:编程语言   时间:2014-08-19 23:53:05    阅读次数:375
java.lang.ClassCastException: android.view.ViewGroup$LayoutParams cannot be cast to android.widget.L(转)
09-09 10:19:59.979: E/AndroidRuntime(2767): FATAL EXCEPTION: main09-09 10:19:59.979: E/AndroidRuntime(2767): java.lang.ClassCastException: android.vie...
分类:移动开发   时间:2014-08-19 14:27:15    阅读次数:363
OVS中对于用户层和datapath层的多个通道利用epoll进行控制
这里先暂时记录下代码流程,有待完善。 static int construct(struct ofproto *ofproto_) { struct ofproto_dpif *ofproto = ofproto_dpif_cast(ofproto_); const char *name = ofproto->up.name; int max_ports; ...
分类:其他好文   时间:2014-08-18 22:08:43    阅读次数:418
CAST和CONVERT差别与联系
CAST和CONVERT:都是将一种数据类型转换成为另一种数据类型。CAST:CAST ( expression AS data_type [ ( length ) ] )EG: CAST(ListPrice AS varchar(12))cast(Round(SalesYTD / commissi...
分类:其他好文   时间:2014-08-18 12:21:24    阅读次数:159
UVA 657-The die is cast(双重BFS)
InterGames is a high-tech startup company that specializes in developing technology that allows users to play games over the Internet. A market analysis has alerted them to the fact that games of chan...
分类:其他好文   时间:2014-08-17 21:22:52    阅读次数:352
第二章 数据,变量和计算
头文件#include<>或#include""<>强制类型转换doublea=1.6;cout<<static_cast<int>(a)<<endl;输出为1注意旧的强制类型转换为int(a),这比新的更容易出错,得不到想要的结果,所以推荐static_cast<转换成的类型>()自动判断数据类型auton=16;..
分类:其他好文   时间:2014-08-15 02:54:27    阅读次数:272
表结构更改后或新增加数据后同步到表中
select 'insert into mtx_system_module(module_id,module_code,module_name,module_note,create_date,version)values('+cast(moduleid as varchar(10))+','''+O...
分类:其他好文   时间:2014-08-14 20:03:39    阅读次数:253
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!