12 2012 档案

Professional jQuery
摘要:DescriptionsOver the past several years JavaScript has undergone a remarkable transformation. It is now one of the most important programming languages in the world. With the ongoing importance of Ajax-based development and the rise of full-featured JavaScript libraries, most of the stigma around Ja 阅读全文

posted @ 2012-12-25 14:05 主人的成长 阅读(176) 评论(0) 推荐(0) 编辑

c++ 不太懂得地方
摘要:class Shape{public:virtual void display(){cout<<"shape"<<endl;}};class Circle:public Shape{public:void display(){cout<<"circle"<<endl;}};class Rect:public Shape{public:void display(){cout<<"rect"<<endl;}};void main(){Shape a;Circle b; 阅读全文

posted @ 2012-12-25 11:01 主人的成长 阅读(143) 评论(0) 推荐(0) 编辑

细节之处 这么长时间才知道 哎 不应该
摘要:缺省构造函数 又叫默认构造函数(default constructor)。在编写程序中,当用户自己定义的构造函数时,给构造函数的参数设置了默认值,这样的构造函数称为缺省构造函数。不带参数的构造函数也是缺省构造函数。 阅读全文

posted @ 2012-12-24 12:08 主人的成长 阅读(123) 评论(0) 推荐(1) 编辑

c++ 虚函数 纯虚函数 抽象类
摘要:虚函数: 声明虚函数的方法是在基类的成员函数原型前加上关键字virtual。简单地说,那些被virtual关键字修饰的成员函数,就是虚函数。 其格式如下:只需改变基类class 类名{......virtual 类型 函数名 (参数表):.......};纯虚函数:在基类中只声明虚函数而不给出具体的函数定义体,将它的具体定义放在各派生类中,称此虚函数为纯虚函数。通过该基类的指针或引用就可以调用所有派生类的虚函数,基类只是用于继承,仅作为一个接口,具体功能在派生类中实现。形式: virtual 类型 函数名(参数表)=0;抽象类: 带有纯虚函数的类成为抽象类:class 类名... 阅读全文

posted @ 2012-12-12 13:27 主人的成长 阅读(195) 评论(0) 推荐(0) 编辑

Smashing HTML5
摘要:DescriptionsHTML5 is packed with great new features, including new content-specific elements, audio and video playback, canvas for drawing, and many others. But where to begin? With Smashing HTML5, you have everything you need to get up and running quickly.Book infoTitleSmashing HTML5LanguageEnglish 阅读全文

posted @ 2012-12-11 15:58 主人的成长 阅读(125) 评论(0) 推荐(0) 编辑

c++ 静态成员
摘要:静态成员的需要性: 有些属性是类中所有对象共有的。 如果放在全局变量中,则它们在类的外边,既不安全,又影响了重用性。使用: 像成员有数据成员和成员函数之分一样,静态成员也有静态数据成员和静态数据成员函数之分,静态成员用“static”声明。eg:多文件程序实现结构//student.h的定义class Student{ public: Student(char *pName="no name"); ~Student(); static int number();//静态成员函数 protected: static int noOfStudents; ... 阅读全文

posted @ 2012-12-10 10:28 主人的成长 阅读(131) 评论(0) 推荐(0) 编辑

HTML5 and JavaScript Projects
摘要:HTML5 and JavaScript Projects show you how to build on your basic knowledge of HTML5 and JavaScript to create substantial HTML5 applications. Through the many interesting projects you can build in this book, you’ll build your HTML5 skills for your future projects, and extend the core skills you may 阅读全文

posted @ 2012-12-07 23:20 主人的成长 阅读(296) 评论(1) 推荐(0) 编辑

递归裴波那契数列
摘要://递归裴波那契数列int fei(int i){ if (i==1 || i==2) { return 1; } else { return fei(i-1) + fei(i-2); }} 阅读全文

posted @ 2012-12-05 11:40 主人的成长 阅读(168) 评论(0) 推荐(0) 编辑

c++动态分配空间 释放空间
摘要:动态分配空间:new释放空间:delete举例:1、int *p=new int;*p=25;delete p;2、int *k=new int[10];delete []k;3、Point *p=new Point(5,5);....//free the memorydelete p; 阅读全文

posted @ 2012-12-05 11:35 主人的成长 阅读(463) 评论(0) 推荐(0) 编辑

Beginning iPhone 4 Development
摘要:Book infoTitleBeginning iPhone 4 DevelopmentID00221LanguageEnglishPublisherApressDateJan 2011Size(Mb)32.8FormatPDFPage674TagsJavaScriptDownloadBeginning iPhone 4 DevelopmentBuy(Amazon)Descriptions 阅读全文

posted @ 2012-12-04 21:20 主人的成长 阅读(119) 评论(0) 推荐(0) 编辑

Getting Started with Metro Style Apps
摘要:Book infoTitleGetting Started with Metro Style AppsID00222LanguageEnglishPublisherO’reillyDateJul 2012Size(Mb)11.3FormatPDFPage94TagsMetro,WindowsDownloadGetting Started with Metro Style AppsBuy(Amazon)Descriptions 阅读全文

posted @ 2012-12-04 21:18 主人的成长 阅读(153) 评论(0) 推荐(0) 编辑

Sams.Teach.Yourself.CPP.in.One.Hour.a.Day.7th.Edition
摘要:Book infoTitleSams.Teach.Yourself.CPP.in.One.Hour.a.Day.7th.EditionID00225LanguageEnglishPublisherSAMSDateMay 2012Size(Mb)4.11FormatPDFPage340TagsMetro,WindowsDownloadSams.Teach.Yourself.CPP.in.One.Hour.a.Day.7th.EditionBuy(Amazon)Descriptions 阅读全文

posted @ 2012-12-04 21:16 主人的成长 阅读(605) 评论(1) 推荐(0) 编辑

初学C++
摘要:刚学c++,今天上午在电脑上想敲几行代码试试,结果问题多多,可见代码看是一回事,写又是一回事。我装了个虚拟机,下载了个visual studio 2005#include <iostream>using namespace std;void test(int &a,int &b);void swap1(int *a, int *b);void main(){int a=3,b=4;//int *x=&a,*y=&b;//swap1(&a,&b);test(a,b);cout<<a<<endl;cout<& 阅读全文

posted @ 2012-12-04 10:54 主人的成长 阅读(144) 评论(0) 推荐(0) 编辑

Actionscript 3.0 迁移指南
摘要:下载地址ActionScript.3.0.Migration.Guide.pdf 阅读全文

posted @ 2012-12-01 17:23 主人的成长 阅读(158) 评论(0) 推荐(0) 编辑

Foundation ActionScript 3.0 With Flash CS3 And Flex
摘要:Book infoTitleFoundation ActionScript 3.0 With Flash CS3 And FlexLanguageEnglishPublisherApressDate2008Size(Mb)7.78FormatPDFPage587TagsActionScript, Flash, FlexDownloadhttp://ref.so/rzo6vDescriptions 阅读全文

posted @ 2012-12-01 17:20 主人的成长 阅读(137) 评论(0) 推荐(0) 编辑

Flash Mobile Developing Android and iOS Applications
摘要:Book infoTitleFlash Mobile Developing Android and iOS ApplicationsLanguageEnglishPublisherFocal PressDate2011Size(Mb)14.7FormatPDFPage295TagsActionScript, Android, iOSDownloadhttp://www.ctdisk.com/file/1887676Descriptions 阅读全文

posted @ 2012-12-01 17:19 主人的成长 阅读(130) 评论(0) 推荐(0) 编辑

Foundation Flash Applications for Mobile Devices
摘要:itleFoundation Flash Applications for Mobile DevicesLanguageEnglishPublisherApressDate2006Size(Mb)6.69FormatPDFPage537TagsFlash, Flash Lite, MobileDownloadhttp://ref.so/ktceDescriptions 阅读全文

posted @ 2012-12-01 17:18 主人的成长 阅读(190) 评论(0) 推荐(0) 编辑

Flash Game Development by Example
摘要:Book infoTitleFlash Game Development by ExampleLanguageEnglishPublisherPack pubDateMar.2011Size(Mb)5.90FormatPDFPage313TagsFlash, Game, developmentDownloadhttp://ref.so/ociezBuy(Amazon)Descriptions 阅读全文

posted @ 2012-12-01 17:17 主人的成长 阅读(141) 评论(0) 推荐(0) 编辑

粒子效果2
摘要:import flash.geom.*;[SWF(width = 465, height = 465, backgroundColor = 0x0, frameRate = 30)] var m:Matrix3D,vm:Matrix3D = new Matrix3D(),p:Object,pp:PerspectiveProjection = new PerspectiveProjection(),pm:Matrix3D=pp.toMatrix3D(),vins:Vector.<Number> = new Vector.<Number>(),vouts:Vector.&l 阅读全文

posted @ 2012-12-01 14:50 主人的成长 阅读(189) 评论(0) 推荐(0) 编辑

收集的小效果
摘要://飞碟import flash.display.Sprite;import flash.utils.Timer;import flash.events.TimerEvent;var B:Sprite=new Sprite();addChild(B);B.x = stage.stageWidth / 2;B.y = stage.stageHeight / 2;for (var i:int=0; i<9; i++){ var bg:Sprite=new Sprite(); addChild(bg); bg.graphics.drawCircle(0,0,... 阅读全文

posted @ 2012-12-01 14:45 主人的成长 阅读(119) 评论(0) 推荐(0) 编辑

导航

< 2025年2月 >
26 27 28 29 30 31 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 1
2 3 4 5 6 7 8
点击右上角即可分享
微信分享提示