码迷,mamicode.com
首页 >  
搜索关键字:jin ge jin qu hao    ( 3637个结果
Post and Get
Post 和 Get 是两种常用的http的方法,这两种方法有什么不一样?字面上看Get就是获取查询的意思,Post是提交,比如提交表单。从功能来说二者并无本质区别,都是客户端向服务器发送一个请求并带上请求的一些信息,服务器根据请求进行处理然后返回处理结果。细节上来讲区别之处对于提交的数据而言,ge...
分类:其他好文   时间:2015-03-06 15:49:55    阅读次数:117
php get_class()函数
"; echo "My name is " . get_class($this) . ""; } } //类内部调用 $bar = new Car(); $bar->getName(); //类外部调用 echo "Its name is " . ge...
分类:Web程序   时间:2015-03-05 20:47:00    阅读次数:172
LeetCode – LRU Cache (Java)
ProblemDesign and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations: get and set.get(key)- Ge...
分类:编程语言   时间:2015-03-05 18:33:09    阅读次数:252
C语言 结构体的内存对齐问题与位域
http://blog.csdn.net/xing_hao/article/details/6678048一。内存对齐许多计算机系统对基本类型数据在内存中存放的位置有限制,它们会要求这些数据的首地址的值是某个数k(通常它为4或8)的倍数,这就是所谓的内存对齐,而这个k则被称为该数据类型的对齐模数(a...
分类:编程语言   时间:2015-03-04 20:56:38    阅读次数:187
PAT:1080. Graduate Admission (30) 全错
#include#include#includeusing namespace std;struct Student{ int GE,GI,sum,rank,ID; int prefer[6];}STU[40066];struct School{ int want; //各学校招...
分类:其他好文   时间:2015-03-02 18:20:07    阅读次数:170
PAT:1080. Graduate Admission (30) 部分错误(录取以学校为导向而不是考生志愿为导向导致的错误)
#include#include#includeusing namespace std;int want[106]; //各学校招生人数struct Student{ int GE,GI,sum,rank,ID; int prefer[6]; bool R; /...
分类:其他好文   时间:2015-03-02 16:22:37    阅读次数:195
Android getResources的作用和须要注意点
今天做一个Android的文件管理器,里面用到非常多的地方用到了getResources。Drawable currentIcon = null;currentIcon = getResources().getDrawable(R.drawable.folder);currentIcon = ge....
分类:移动开发   时间:2015-03-01 19:45:36    阅读次数:162
python 发送电子邮件模块smtplib
#!/usr/bin/python #-*-coding:utf-8-*- importsmtplib importstring HOST="smtp.uinx.com.cn" SUBJECT="TestemailfromPython" #TO="yafeng.jin@archermind.com" #TO="desheng.shi@archermind.com" TO="yunxing.le@archermind.com" FROM="smurf@uinx.com.cn" text="Pyhonrules..
分类:编程语言   时间:2015-02-28 16:43:58    阅读次数:197
iOS 程序退到后台,如何继续执行任务
程序从前台退到后,将执行程序的委托方法。- (void)applicationDidEnterBackground:(UIApplication*)application{}问题:当应用被送到后台,主线程就会被暂停。用NSThread的detachNewThreadSelector:toTar ge...
分类:移动开发   时间:2015-02-28 13:00:10    阅读次数:221
Quidway AR28-31路由器配置
############################IP规划:eth1:公网IPx.x.x.xeth0:私网IP192.168.0.249############################一.配置用户名密码telnet登陆console口登陆路由器<Quidway>system-view[Quidway]local-useradmin(用户名)[Quidway-luser-admin]passwordcipher****(密码)[Qu..
分类:其他好文   时间:2015-02-25 23:56:16    阅读次数:482
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!