自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(11)
  • 收藏
  • 关注

原创 JSP Actions

JSP actions use constructs in XML syntax to control the behaviour of the servlet engine. You can dynamically insert a file, reuse JavaBeans components, forward the user to another page, or generate HTM

2016-08-04 18:43:21 264

原创 JSP Componets Quick summary

JSP Syntax:1. DeclarationsA declaration declares one or more variables or methods that you can use in Java code later in the JSP file. (Don’t really see only use declarations, usually declare in the sc

2016-08-04 14:44:54 272

原创 GNU Debugger basic instruction

complie with -g use gdb executablefilenameSet break pointbreak functionname : break at function call. eg:break add(int,int) specifying function name can ambiguity in overloading.break filename.cpp:

2016-07-30 21:21:46 270

原创 C/C++ Pointer Learning ||

Learned C like 4 years ago on Tan Haoqiang’s weird silly book. Now I need to have a recap of this and hopefully understand better in C/C++. I don’t like C/C++ honestly, but I have to understand it bet

2016-07-23 20:16:16 238

原创 C++ OO Programming (1)

C++ OO methodsA class constructor is a special member function of a class that is executed whenever we create new objects of that class.Constructor and param constructorA constructor can have or not ha

2016-07-23 18:42:42 530

原创 C++ Learning (2)

Strings2 types are supported. - C style char string (the last char will automatically be ‘\0’)char greeting[6] = {'H', 'e', 'l', 'l', 'o', '\0'};char greeting[] = "Hello";C++ library StringPointer

2016-07-21 19:21:01 240

原创 C++ Learning (1)

Compile and execute C++Type ‘g++ hello.cpp ’ and press enter to compile your code. If there are no errors in your code the command prompt will take you to the next line and would generate a.out execut

2016-07-20 21:46:26 356

原创 Servlet Key Points

init() methodThe lifecycle of a servlet is controlled by the container in which the servlet has been deployed. When a request is mapped to a servlet, the container performs the following steps. - (1)

2016-07-19 11:51:03 237

原创 MySQL Quick guide

Ref: http://dev.mysql.com/doc/refman/5.7/en/ (1) Download mysql dmg pkg from https://dev.mysql.com/downloads/mysql/ (2) Run mysql through system preference. (3) bashprofile setalias mysql=/usr/local

2016-07-18 13:26:42 292

原创 欢迎使用CSDN-markdown编辑器

欢迎使用Markdown编辑器写博客本Markdown编辑器使用StackEdit修改而来,用它写博客,将会带来全新的体验哦:Markdown和扩展Markdown简洁的语法代码块高亮图片链接和图片上传LaTex数学公式UML序列图和流程图离线写博客导入导出Markdown文件丰富的快捷键快捷键加粗 Ctrl + B 斜体 Ctrl这里写代码片 + I 引用

2016-07-18 13:24:13 192

原创 汇编语言王爽 实验10.1

初学汇编 做的不好 但是能用:assume cs:codedata segmentdb 'welcome to masm! ',0data endscode segmentstart: mov dh,8;line       mov dl,3;column       mov cl,2;color       mo

2013-05-31 11:16:23 521

空空如也

空空如也

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

TA关注的人

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