自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

sala223的专栏

bear fairyland

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

原创 gcc 与 汇编

gcc 只支持AT&T格式的汇编。AT&T 386 汇编与intel格式的差异:在intel格式中大多使用大写字母,而在AT&T格式中都使用小写字母在AT&T格式中,寄存器名要加上%号作为前缀,而在intel格式中则不带前缀在AT&T的386汇编语言中,指令的源操作数与目标操作数的顺序与在intel的386汇编语言中正好相反,     在intel格式中是目标在前,源在后,而在AT&T格式中则是源

2005-12-22 13:01:00 2267 1

原创 shell I/O

shell I/Ocommand 2> file重定向标准错误到file文件command >& 2   (>&后跟文件描述符)重定向标准输出到标准错误exec 重定向标准输入到file文件exec 2>file重定向标准错误到file注意:exec对整个shell程序重定向有效>&-  :关闭标准输出inline 输入重定向:command shell 用words 后面的语句作为输入,当碰到有

2005-12-16 18:37:00 898

原创 shell 参数取代方法

所有示例代码都在freebsd 5.4下通过一:参数取代方法1:${parameter:-value}如果parameter不为空则取代parameter的值,否则用取代value的值例:echo Using editor ${EDITOR:-/bin/vi}if [ -n "$EDITOR" ]then         EDITOR=$EDITORelse         EDITOR=/bin

2005-12-15 01:12:00 933

java concurrency in practice.chm

I was fortunate indeed to have worked with a fantastic team on the design and implementation of the concurrency features added to the Java platform in Java 5.0 and Java 6. Now this same team provides the best explanation yet of these new features, and of concurrency in general. Concurrency is no longer a subject for advanced users only. Every Java developer should read this book." --Martin Buchholz JDK Concurrency Czar, Sun Microsystems

2009-01-10

Domain-Driven Design: Tackling Complexity in the Heart of Software

The software development community widely acknowledges that domain modeling is central to software design. Through domain modeling, software developers are able to express rich functionality and translate that functionality into software implementation that truly serves the needs of its users. Despite its obvious importance, however, there are few practical resources that show how to incorporate effective domain modeling into the software development process.

2008-11-13

C99 standard

C 99 标准. With the introduction of new devices and extended character sets, new features may be added to this International Standard. Subclauses in the language and library clauses warn implementors and programmers of usages which, though valid in themselves, may conflict with future additions

2008-10-11

空空如也

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

TA关注的人

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