1 Serializable2 Parcelable实现方法:a.定义两个javaBean(Book,Person),分别implements Serializable和Parcelableb.建立Activity,用来传递Object对象和接收Object对象,通过Serializeable和Pa...
分类:
其他好文 时间:
2015-01-27 00:21:07
阅读次数:
229
//无法正常运行
#include
#include
using namespace std;
class book
{
public:
int num;
float price;
book *next;
};
book *head=NULL;
bool check(string str)//检查是否是数字
{
for(int i=0;i<str.length();i++)
{
if...
分类:
编程语言 时间:
2015-01-26 19:19:26
阅读次数:
133
django中文版和英文版:(建议不想看英文版的可以参考中文版文字,但是代码不要看中文版的,有些出入会让你迷惑)。
http://djangobook.py3k.cn/2.0/chapter07/
http://www.djangobook.com/en/2.0/chapter07.html
Contact us
Contact us
{% if error...
分类:
其他好文 时间:
2015-01-26 19:18:15
阅读次数:
286
Sencha Touch is a high-performance HTML5 mobile application framework. You can use Sencha Touch to produce a native-app-like experience inside a browser or in a hybrid shell. Sencha Touch supports Android, iOS, Windows Phone, Microsoft Surface Pro and RT, ...
分类:
其他好文 时间:
2015-01-26 17:15:05
阅读次数:
219
#include
using namespace std;
class book
{
public:
int num;
float price;
book *next;
};
book *head=NULL;
book *creat()
{
book *p1,*p2;
p1=new book;
head=p1;
p2=p1;
cout<<"请输入图书的编号,以0结束"<<endl;...
分类:
编程语言 时间:
2015-01-26 17:11:22
阅读次数:
200
http://book.douban.com/subject/5956488/?qq-pf-to=pcqq.discussionhttp://book.douban.com/subject/3590768/?qq-pf-to=pcqq.discussionhttp://book.douban.com...
分类:
其他好文 时间:
2015-01-26 14:52:12
阅读次数:
123