本月博客排行
-
第1名
Xeden -
第2名
fantaxy025025 -
第3名
bosschen - paulwong
- johnsmith9th
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - gengyun12
- wy_19921005
- vipbooks
- e_e
- benladeng5225
- wallimn
- ranbuijj
- javashop
- jickcai
- fantaxy025025
- zw7534313
- qepwqnp
- robotmen
- 解宜然
- ssydxa219
- sam123456gz
- zysnba
- sichunli_030
- tanling8334
- arpenker
- gaojingsong
- xpenxpen
- kaizi1992
- wiseboyloves
- jh108020
- xyuma
- ganxueyun
- wangchen.ily
- xiangjie88
- Jameslyy
- luxurioust
- mengjichen
- lemonhandsome
- jbosscn
- nychen2000
- zxq_2017
- lzyfn123
- wjianwei666
- forestqqqq
- ajinn
- siemens800
- hanbaohong
- 狂盗一枝梅
- java-007
- zhanjia
- 喧嚣求静
- Xeden
最新文章列表
Item 29: Consider typesafe heterogeneous containers
1. Generic containers limit you to a fixed number of type parameters per container. In some cases we may parameterize the key instead of the container. Then present the parameterized key to the conta ...
Oracle存储过程的部分知识复习(待续)
<div class="iteye-blog-content-contain" style="font-size: 14px"></div>
一。execute immediate, using
create or replace procedure Test(sid IN NUMBER, sname IN varchar2,a ...
关于mysql函数GROUP_CONCAT
GROUP_CONCAT()通常结合 group by 一起来使用
举一个例子:
一张部门表
id name
1 开发部
一张员工表
id name departmentId
1 张三 1
2 李四 1
3 王五 1
打印:
id name employeeNames
1 开发部 ...
C++的多种强制类型转换
C++中有很多种强制类型转换,其中有很多是类型安全的,但是也有很多时类型不安全的。
C++给予了我们一个大尺度的类型转换体系,但是如果把握不当就可能导致错误。
http://www.chineselinuxuniversity.net/articles/25675.shtml
典型的C风格的类型转换,其中存在不确定性。其破坏性可以等同于reinterpret_cast
T(exp ...
cast用法
cast:将某种数据类型的表达式显式转换为另一种数据类型。CAST 和 CONVERT 提供相似的功能。 语法 使用 CAST: CAST ( expression AS data_type ) as : sql里列的别名 建议:象cast, as 之类的都是sql 语句里的关键字,在查询分析器里,选择后,按F1+SHIFT就可以查询帮助。
/*******例子************/
C ...
Chapter 3. Operators -- Thinking in Java
1) An operator takes one or more arguments and produces a new value. The arguments are in a different form than ordinary method calls, but the effect is the same. All operators produce a value from t ...