一、const应用1.const关键字,他后面内容的不可修改,一般来说,其修饰的变量不可再进行赋值操作;2.常量指针int
a= 3;int b = 4;const int* pt = &a;a =
5;*pt的值为5,pt只是一个指针,所以他指向的是a的内容,const限制的是*pt,所以,只是不...
分类:
编程语言 时间:
2014-05-01 08:16:44
阅读次数:
427
在VC中使用WebBrowser控件的两方法黄森堂(vcmfc)著ClassWizard方式:1.创建包装类:View->ClassWizard->Add
Class->Form a Type
Library->C:\winnt\system32\shdocvw.dll->只选择IWebBrowse...
分类:
Web程序 时间:
2014-05-01 08:15:32
阅读次数:
470
1、实现内容
定义一个简单的jquery插件,alert传递进来的参数2、插件js文件(jquery.showplugin.js)(function ($) {
//定义插件中的方法 var methods = { //Object showName: function ...
分类:
Web程序 时间:
2014-05-01 08:09:02
阅读次数:
403
vector的标准模板是:template > class
T>而普通模板则是template class
T>,如何创建一个模板能包容以上两个形式通用?http://zhidao.baidu.com/question/412950067.html
分类:
编程语言 时间:
2014-05-01 06:06:16
阅读次数:
331
我们主要使用3dsmax进行制作,输出FBX的类型导入unity3d中。默认情况下,3dsmax可以和U3d软件直接融合,自动转换为FBX物体。注意事项如下:1.面数控制在MAX软件中制作单一Game
Object物体的面数不能超过65000个三角形,即32500个多边形Poly,如果超过这个数量的...
分类:
其他好文 时间:
2014-05-01 05:37:33
阅读次数:
323
What is an object? (Page 238)In C++, an object
is just a variable, and the purest definition is "a region of storage" (this is
a more specific way ...
分类:
其他好文 时间:
2014-05-01 04:38:01
阅读次数:
327
1. 打开/关闭MathType窗口 Alt+Ctrl+q:插入inline公式
Ctrl+S:更新公式到Word相应位置 Alt+F4:保存并关闭MathType窗口,返回Word。2.
公式输入快捷键Ctrl+H上角标Ctrl+L下角标Ctrl+J上、下角标Ctrl+F分式Ctrl+I积分...
分类:
其他好文 时间:
2014-05-01 04:13:23
阅读次数:
477
The variables are guaranteed to be laid out
contiguously, as in C. However, the access blocks may not appear in the object
in the order that you decla...
分类:
数据库 时间:
2014-05-01 04:11:22
阅读次数:
543
我们经常使用到的System.out.println(),println()是一个方法(Method),而System是系统类(Class),out是标准输出对象(Object)。这句话的用法是调用系统类System中的标准输出对象out中的方法println()。Java
方法是解决一列重复步.....
分类:
编程语言 时间:
2014-05-01 03:56:57
阅读次数:
336
0. 引言---回忆(1) Cauchy 积分公式 (第三章) $$\beex \bea
f\mbox{ 在 }D\mbox{ 内解析}, \mbox{ 在 }\bar D=D+\p D\mbox{ 上连续}&\ra \int_C
\cfrac{f(z)}{z-a}\rd z=2\pi if(a),...
分类:
其他好文 时间:
2014-05-01 03:47:46
阅读次数:
352