码迷,mamicode.com
首页 >  
搜索关键字:cast    ( 1368个结果
运行时类型识别
运行时类型识别(run time type identification,RTTI)的功能由两个运算符实现: typeid 运算符,用于返回表达式的类型。 dynamic_cast 运算符,用于将基类的指针或引用安全地转换成派生类的指针或引用。 将上面的运算符用于某种类型的指针或引用,并且该类型含有 ...
分类:其他好文   时间:2020-03-12 15:57:21    阅读次数:64
参数数据类型 text 对于 replace 函数的参数 1 无效
update article set article_content=REPLACE(Cast(article_content as varchar(max)),'?',' ') where article_id=191 原报错代码: 1update tablename set colname=re ...
分类:其他好文   时间:2020-03-06 21:34:25    阅读次数:64
Linq操作ArrayList
ArrayList实现了System.Collections空间下的IEnumerable接口,这个接口是非泛型的。如果要使用LINQ,必须声明枚举变量的类型,依赖Cast查询运算符转换枚举类型。 using System; using System.Collections; using Syste ...
分类:其他好文   时间:2020-03-06 01:22:46    阅读次数:74
C++ 命名的4中强制类型转换[施工中]
static_cast const_cast dynamic_cast reinterpret_cast ...
分类:编程语言   时间:2020-03-05 22:28:26    阅读次数:71
点云---随机数生成之数据采样
#include <stdio.h> #include <stdlib.h> #include <time.h> #include <iostream> #include <vector> float unifRand() { return (static_cast<float>(rand() / ...
分类:其他好文   时间:2020-02-28 19:09:34    阅读次数:190
C++四种类型转换
C风格的强制类型转换(Type Cast)很简单,不管什么类型的转换统统是: TYPE b = (TYPE)a C++风格的类型转换提供了4种类型转换操作符来应对不同场合的应用。 static_cast 静态类型转换。如int转换成char reinterpreter_cast 重新解释类型 dyn ...
分类:编程语言   时间:2020-02-28 14:15:20    阅读次数:67
典型问题分析4—StaticLinkList中数据元素删除时的效率问题
StaticLinkList中数据元素删除时的效率问题 void destroy(Node* pn) { SNode* space = reinterpret_cast<SNode*>(m_space); SNode* psn = dynamic_cast<SNode*>(pn);//从父类指针,转 ...
分类:其他好文   时间:2020-02-22 15:49:38    阅读次数:58
SqlServer创建时间维度
DECLARE @BeginDate DATE; SELECT @BeginDate = '2018-1-1'; WHILE @BeginDate <= '2021-12-31' BEGIN INSERT INTO Dim_Date SELECT Cast(CONVERT(VARCHAR(10), ...
分类:数据库   时间:2020-02-20 10:04:19    阅读次数:91
错误/异常:java.lang.Class cannot be cast to java.lang.reflect.ParameterizedType 的解决方法
1、错误/异常视图 org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'baseDao' defined in class path resource [spring/bean ...
分类:编程语言   时间:2020-02-19 15:02:36    阅读次数:122
[Angular 9] Built-in template syntax $any
The $any() type cast function Sometimes a binding expression triggers a type error during AOT compilation and it is not possible or difficult to fully ...
分类:其他好文   时间:2020-02-17 17:56:29    阅读次数:86
1368条   上一页 1 ... 5 6 7 8 9 ... 137 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!