posted @ 2015-08-27 00:16 指尖敲击流逝的岁月 阅读(1274) 评论(0) 推荐(0)
摘要:
0.0 环境设置环境:64bit,win8.10.1. 地址:https://www.python.org/downloads/windows/Python最新源码,二进制文档,新闻资讯等可以在Python的官网查看到:Python官网:http://www.python.org/你可以在一下链接中... 阅读全文
摘要:
题目和其他参考:http://blog.chinaunix.net/uid-26874207-id-4135599.html http://blog.csdn.net/mu399/article/details/7722810 http://www.cnblogs.com/xy-kidult/archive/2013/03/25/2970313.html 题目:描述 小明今天很开心,家里购置的新房... 阅读全文
posted @ 2015-07-22 01:11 指尖敲击流逝的岁月 阅读(171) 评论(0) 推荐(0)
摘要:
1.字符串查找str.find()str.rfind()str.find_first_of()str.find_last_of()代码区: string str1 = "hello, this is just a test!"; string str2 = "st"; string str3 = "west"; int pos = 0; cout 代码区: ... 阅读全文
posted @ 2015-07-21 00:33 指尖敲击流逝的岁月 阅读(173) 评论(0) 推荐(0)
摘要:
Sort elements in rangeSorts the elements in the range [first,last) into ascending order.The elements are compared using operator 调用sort,引用头文件:#include 调用less(从小到大),greater(从大到小),引用头文件:#include 同时对于cha... 阅读全文
posted @ 2015-07-10 00:06 指尖敲击流逝的岁月 阅读(110) 评论(0) 推荐(0)
摘要:
环境:vs2010,X64,windows8.1.1.memest 是按字节来赋值的。2.存储是小端模式。3.memset函数,第一个参数表示首地址,第二个是赋值的值,第三个是赋值的字节数。1.高位舍弃,取低字节进行赋值。因此要初始化非零值得时候要注意了(0的时候无碍)。来自为知笔记(Wiz) 阅读全文
posted @ 2015-07-09 00:21 指尖敲击流逝的岁月 阅读(143) 评论(0) 推荐(0)
摘要:
0.前言WAN:wide area network 广域网LAN: local area network 局域网ISO:国际标准化组织OSI:open systems interconnection 开放式通信系统互联网参考模型TCP/IP 并非是ISO所定制的某种国际标准,而是由IETF所建议并推进的一种标准化作业的标准。互联网时代:路由的目的建立不同网段的链接。如果用聊天来解释下协议:不同的... 阅读全文
posted @ 2015-07-07 23:00 指尖敲击流逝的岁月 阅读(176) 评论(0) 推荐(0)