12.1 Dynamic memory and classes 12.1.1 A review example and static class members Now try implement a String class(a flawed one): // sayings1.cpp using ...
分类:
其他好文 时间:
2018-10-16 20:53:04
阅读次数:
157
11.5.3 An implementation comment ) The separation of interface from implementation is one of the goals of OOP. ) Example of the implementation of the ...
分类:
其他好文 时间:
2018-10-16 11:57:57
阅读次数:
119
2在前面介绍过,进程之间交换信息的唯一途径就是传送打开的文件。可以经由fork或者exec来传送。这一章将介绍新的进程共享方式 每个进程各自有不同的用户地址空间,任何一个进程的全局变量在另一个进程中都看不到,所以进程之间要交换数据必须通过内核,在内核中开辟一块缓冲区,进程A把数据从用户空间拷到内核缓 ...
分类:
系统相关 时间:
2018-10-14 14:02:33
阅读次数:
209
参考链接:https://www.linuxprobe.com、 https://www.linuxprobe.com/chapter-15.html ...
分类:
系统相关 时间:
2018-10-12 01:34:37
阅读次数:
402
以前做过PC页面微信支付,但是这次在小程序 直接调用微信支付功能还是方便很多 先放个微信官方API链接:https://pay.weixin.qq.com/wiki/doc/api/wxa/wxa_api.php?chapter=7_7&index=5 先说说整个下单支付流程的整体思路, 0,准备工 ...
分类:
微信 时间:
2018-10-11 12:19:02
阅读次数:
263
标准版不允许并行、分区、闪回、各种缓存等大数据量必须特性,如此限制,oracle摆明了只卖企业版,买标准版不如mysql(如果不熟悉postgresql的话)。 Oracle企业版1 CPU 20w起,理论上最多打7折,官方75折起步,买了oracle还指望不用oracle各种特性、所谓平台无关的, ...
分类:
数据库 时间:
2018-10-10 17:06:37
阅读次数:
202
本来想做数论的……但是别的dalao都在做制胡窜 所以…… Chapter I KMP KMP 最关键的不是这个半暴力的单模匹配 而是这个nxt数组 经常出一些奇怪的题 尤其是循环节可以直接由T-nxt[T]得到……神啊 总之记住nxt就是最长公共前后缀中前缀的尾指针就OK T1 poj3461 O ...
分类:
其他好文 时间:
2018-10-10 11:59:57
阅读次数:
119
Quantum Computation and Quantum Information 由于和迅速发展的IT业有一定关系,近几年量子计算和量子信息的发展也吸引了大量资本的关注,其中Microsoft 在加州大学圣芭芭拉分校很早就设有 Sation Q 实验室,重点研究拓扑量子计算, 量子计算的大牛 ...
分类:
其他好文 时间:
2018-10-08 00:39:37
阅读次数:
152
10.5 An array of objects ) You can define an array of objects just as an array of built in types: Declaring without initialization requires the class ...
分类:
其他好文 时间:
2018-10-07 21:30:28
阅读次数:
128
10.2.4 Using classes Following exapmle uses the class definition and implementation written in previous files: ) The code below is a client: client : ...
分类:
其他好文 时间:
2018-10-07 18:52:02
阅读次数:
144