自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 资源 (3)
  • 收藏
  • 关注

转载 C++ Tutorial: Enhance Type Safety and Code Clarity with the nullptr Keyword

IntroductionThe literal 0 has a unique position in C++ programming -- it automatically converts to almost every fundamental type, depending on the context: int x=0; double d=0; char * p

2011-12-30 10:58:46 735

转载 C++ 2011: nullptr

C++ used to lack a special value to indicate a null pointer. It used 0 for this purpose, something that was inherited from C. This led to some problems, which we'll show in this article. The new sta

2011-12-30 10:37:31 1101

转载 C++ 2011: Strongly-typed Enums

Enumerations are an important feature of C++, but unlike in other languages, enumerations are not type-safe. There are several problems with the enums: they export their enumerators (the members of

2011-12-30 10:09:37 1238

转载 C++ 2011: Uniform Initialization

In C++, initializing objects is not done in the same manner in all contexts. The rules for initialization and constructors are not really simple and developers sometimes have to write lot of explici

2011-12-30 09:48:54 1107

转载 随机提取N条记录的SQL语句(转)

Sql server:    select top 10 * from 表 order by newid()Access:    SELECT top 10 * FROM 表 ORDER BY Rnd(id) Rnd(id) 其中的id是自动编号字段,可以利用其他任何数值来完成比如用姓名字段(UserName)    SELECT top 10 *

2011-12-28 17:09:13 407

转载 百度面试题

问题1,用C语言实现一个revert函数,它的功能是将输入的字符串在原串上倒序后返回。答案:char *revert(char * str){int n=strlen(str);int i=0;char c;for(i=0;i{c=str;str=str[n-i];str[n-i]=c;}return str;}问题2 编程:用C语言

2011-12-28 17:08:21 408

the way to go

学习go语言的入门材料,从环境搭建,到语法再到深入讲解。

2013-07-16

programming in go

go语言学习入门的好资料,很适合初学者,尤其现在go语言的资料不多

2013-07-08

内存管理白皮书(英文))

高清 文字版 1.demonstrate the algorithms the java GC use 2.take a deep look inside the JVM memory management model 3.introduce how to choose a suitable GC strategy and how to configure your JVM for your application 4.introduce the key options for JVM configuration

2012-07-28

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除