码迷,mamicode.com
首页 >  
搜索关键字:简单模拟    ( 346个结果
python 2.7 简单模拟登陆网站
举个栗子,首先创建网络会话, 然后就可以用创建的session来访问网页了。 session.get(URL) ...
分类:编程语言   时间:2016-04-03 21:57:47    阅读次数:150
mvvm 学习索引
MVVM : The MVVM Light Messenger In-Depth MvvmLight框架使用入门(一) WPF新手实践1:MVVM Light Toolkit(一、下载与安装) 关于 MVVMLight 设计模式系列 MVVM之MVVMLight,一个登录注销过程的简单模拟 mvmv ...
分类:其他好文   时间:2016-04-01 23:33:02    阅读次数:221
哈哈,找到一种方式来简单模拟EXTJS中与服务器的AJAX交互啦。
一直在测试客户端的EXTJS,但遇到服务器端就麻烦了,要建库,要写JSON,要有HTTP返回值。 今天测试了一个简单的方法,经过测试是OK了。 那,就是Python的SimpleHTTPServer模块作个简单的WEB服务器,然后,需要返回的值直接写个HTML即可啦。 指定目录的启动命令: 如果要测 ...
分类:Web程序   时间:2016-03-26 14:02:57    阅读次数:147
CodeForces 652A Gabriel and Caterpillar
简单模拟。 ...
分类:其他好文   时间:2016-03-26 12:08:39    阅读次数:118
简单模拟STL库中string的实现
#include<iostream> #include<assert.h> #include<malloc.h> #defineCAPACITY3 usingnamespacestd; classString { public: String(char*str="") :_str((char*)malloc(strlen(str)+1)), _size(strlen(str)) { strcpy(_str,str); _capacity=_size+1;..
分类:其他好文   时间:2016-03-11 22:32:35    阅读次数:183
POJ3087 Shuffle'm Up 简单模拟
题意:就是给你两副扑克,然后一张盖一张洗牌,不断重复这个过程,看能不能达到目标的扑克顺序 分析:然后就模拟下,-1的情况就是有循环节 #include<cstdio> #include<algorithm> #include<iostream> #include<cstring> #include<
分类:其他好文   时间:2016-01-28 13:47:22    阅读次数:131
JavaWeb学习总结(四十九)——简单模拟Sping MVC
原文:http://www.cnblogs.com/xdp-gacl/p/4101727.html
分类:编程语言   时间:2016-01-28 00:47:54    阅读次数:418
0122——简单小动画+微博简单模拟2
一.ImageView实现旋转小动画注意:参数为弧度,不要忘记除数加.0[UIViewanimateWithDuration:0.3animations:^{ self.addImageView.transform=CGAffineTransformMakeRotation(45/180.0*M.....
分类:其他好文   时间:2016-01-22 13:28:01    阅读次数:131
UITabBarController+微博简单模拟1
UITabBarController是IOS中很常用的一个viewController。UITabBarController通常作为整个程序的rootViewController,而且不能添加到别的container viewController中.一.创建最常见的创建UITabBarControl...
分类:其他好文   时间:2016-01-21 23:06:54    阅读次数:202
简单小动画+微博简单模拟2
一.ImageView实现旋转小动画注意:参数为弧度,不要忘记除数加.0[UIViewanimateWithDuration:0.3animations:^{ self.addImageView.transform=CGAffineTransformMakeRotation(45/180.0*M.....
分类:其他好文   时间:2016-01-21 22:55:49    阅读次数:176
346条   上一页 1 ... 16 17 18 19 20 ... 35 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!