2012年12月11日

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 主人的成长 阅读(129) 评论(0) 推荐(0)

2012年12月10日

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 主人的成长 阅读(141) 评论(0) 推荐(0)

2012年12月7日

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 主人的成长 阅读(307) 评论(1) 推荐(0)

2012年12月5日

递归裴波那契数列

摘要: //递归裴波那契数列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 主人的成长 阅读(173) 评论(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 主人的成长 阅读(473) 评论(0) 推荐(0)

2012年12月4日

Beginning iPhone 4 Development

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

posted @ 2012-12-04 21:20 主人的成长 阅读(128) 评论(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 主人的成长 阅读(162) 评论(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 主人的成长 阅读(617) 评论(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 主人的成长 阅读(152) 评论(0) 推荐(0)

2012年12月1日

Actionscript 3.0 迁移指南

摘要: 下载地址ActionScript.3.0.Migration.Guide.pdf 阅读全文

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

导航