自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(2)
  • 资源 (4)
  • 收藏
  • 关注

转载 C++中的引用

1、引用的概念      引用是个别名,它作为目标的别名而使用,对引用的改动实际就是对目标的改动。例如:       int a = 1;       int&b = a;     //b是的别名        b = 2;//这时打印输出a和b,值都为2       引用不是值,不占存储空间,声明引用时,目标的存储状态不会改变。      如果程序寻找引用的地

2012-02-12 21:49:41 285

转载 C++中的const与指针

1、指向常量的指针(常量指针)       常量指针定义“const int * pi=&a”,告诉编译器,*pi是常量,不能修改。       例如:       const int a = 1;                const int b = 2;        const int * pi=&a;       *pi = 3;//error, 指针指

2012-02-12 21:12:32 576

jquery tabs实例

轻松实现网页版的tab标签显示。 包含完整的js和css代码

2012-08-29

jqueryUI工具类库

Welcome to jQuery UI! This page demonstrates the widgets you downloaded using the theme you selected in the download builder. We've included and linked to minified versions of jQuery, your personalized copy of jQuery UI (js/jquery-ui-1.8.21.custom.min.js), and css/humanity/jquery-ui-1.8.21.custom.css which imports the entire jQuery UI CSS Framework. You can choose to link a subset of the CSS Framework depending on your needs. You've downloaded components and a theme that are compatible with jQuery 1.3+. Please make sure you are using jQuery 1.3+ in your production environment. YOUR COMPONENTS:

2012-08-29

struts2示例程序

struts.xml &lt;?xml version="1.0" encoding="UTF-8" ?&gt; <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.1//EN" "http://struts.apache.org/dtds/struts-2.1.dtd"> <struts> <package name="demo" namespace="/mystruts" extends="struts-default"> <action name="sum" class="action.SumAction"> <result name="positive">/positive.jsp</result> <result name="negative">/negative.jsp</result> </action> </package> </struts>

2012-08-10

空空如也

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

TA关注的人

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