上一页 1 ··· 229 230 231 232 233 234 235 236 237 ··· 255 下一页
摘要: 測试描写叙述:暂时开辟一个存储空间以存放一个结构体数据 #include <iostream> #include <string> using namespace std; struct Student { string name; int age; char sex; }; int main() 阅读全文
posted @ 2017-04-30 16:34 zhchoutai 阅读(546) 评论(0) 推荐(0)
摘要: 一、 简单介绍 如果我们本章讨论的主机都是支持双栈的,即支持IPv4地址。也支持Ipv6地址。 我们本次讨论的点:client与server端使用的是不同类型的地址。由于同样类型的地址没什么可讲的。 二、 IPv4client与IPv6server 即。client使用IPv4地址套接字来通信,se 阅读全文
posted @ 2017-04-30 15:46 zhchoutai 阅读(446) 评论(0) 推荐(0)
摘要: 题目链接:https://vijos.org/p/1049 题目大意:顺次给出m个置换,重复使用这m个置换对初始序列进行操作。问k次置换后的序列。m<=10, k<2^31。 首先将这m个置换“合并”起来(算出这m个置换的乘积),然后接下来我们须要运行这个置换k/m次(取整。若有余数则剩下几步模拟就 阅读全文
posted @ 2017-04-30 15:10 zhchoutai 阅读(270) 评论(0) 推荐(0)
摘要: http://www.cgrealm.org/model/ 王国3D模型库 http://www.cgjoy.com/ 游戏特效论坛 http://www.cgrealm.org/model/ 王国3D模型库 http://www.cgjoy.com/ 游戏特效论坛 阅读全文
posted @ 2017-04-30 14:13 zhchoutai 阅读(178) 评论(0) 推荐(0)
摘要: 题目地址:点击打开链接 还是太弱。。 英文太差。,, 预计要等待被虐了。。 1077 找最长的公共后缀,暴力就能够写: #include<iostream> #include<cstdio> #include<cmath> #include<algorithm> #include<cstring> 阅读全文
posted @ 2017-04-30 12:41 zhchoutai 阅读(524) 评论(0) 推荐(0)
摘要: Annotation(注解)简单介绍: 注解大家印象最深刻的可能就是JUnit做单元測试,和各种框架里的使用了。本文主要简介一下注解的用法,下篇文章再深入的研究。 annotation并不直接影响代码语义。可是它可以被看作类似程序的工具或者类库。它会反过来对正在执行的程序语义有所影响。 annota 阅读全文
posted @ 2017-04-30 11:14 zhchoutai 阅读(349) 评论(0) 推荐(0)
摘要: 关于http和http跨域淘宝解决方式研究: http://buyer.trade.taobao.com/trade/pay.htm?spm=a1z01.2.3.4.0.wZAGp9&bizOrderId=848792014755406&bizType=200&ispayforanother=fal 阅读全文
posted @ 2017-04-30 10:28 zhchoutai 阅读(1039) 评论(0) 推荐(0)
摘要: 主要内容大概例如以下: 1.开发环境搭建 2.servlet/jsp解说 3.mysql解说 4.JDBC解说 5.ssh解说 6.整合开发 7.样例具体解释 主要内容大概例如以下: 1.开发环境搭建 2.servlet/jsp解说 3.mysql解说 4.JDBC解说 5.ssh解说 6.整合开发 阅读全文
posted @ 2017-04-30 09:06 zhchoutai 阅读(123) 评论(0) 推荐(0)
摘要: 在ASIHttpRequest.m文件 中的 - (id)initWithURL:(NSURL *)newURL方法中找到 [self setDefaultResponseEncoding:NSISOLatin1StringEncoding];这句。能够 看到。 要更改成utf8时用例如以下方法: 阅读全文
posted @ 2017-04-30 08:19 zhchoutai 阅读(177) 评论(0) 推荐(0)
摘要: 1, 生命周期 在android官方文档中,推荐我们在onResume中进行 registerReceiver, 在onPause中进行unRegisterReceiver。 他们给出的理由是: If registering a receiver in your Activity.onResume( 阅读全文
posted @ 2017-04-29 21:36 zhchoutai 阅读(203) 评论(0) 推荐(0)
上一页 1 ··· 229 230 231 232 233 234 235 236 237 ··· 255 下一页