本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- xiangjie88
- zysnba
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- gengyun12
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sam123456gz
- sichunli_030
- arpenker
- tanling8334
- gaojingsong
- kaizi1992
- xpenxpen
- 龙儿筝
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- mengjichen
- jbosscn
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- mwhgJava
- kingwell.leng
最新文章列表
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 ...