缘起: 一个php-fpm的请求执行时间会比较长,总是执行不完就中止了;查看php错误日志,显示执行时长超过了 …
分类存档:程序设计
PHP编译问题
php 的configure选项中启用模块时,有些是–with-extname ,有些是 R …
golang 开源项目
http://www.geekhub.cn/a/77.html
c++之多态与虚函数
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
#include<string> #include<iostream> using namespace std; class animal{ public: virtual void say()=0; virtual void run() { cout << "running" <<endl; } }; class dog:public animal{ public: void say() { cout<<"wang wang ..."<<endl; } virtual void run() { cout << "dog running" <<endl; } }; class jinmao:public dog{ public: void say() { cout << "I am jinmao, wang wang ..." <<endl; } void run() { cout << "jinmao running" <<endl; } }; void say(animal *a){ a->say(); } void run(animal *a){ a->run(); } void dog_run(dog *d){ d->run(); } int main(){ say(new dog()); say(new jinmao()); run(new dog()); run(new jinmao()); dog_run(new jinmao()); return 0; } |
多态玩的就是虚 什么是多态? 函数的形参中定 …
画图工具
50款JavaScript图表库分享: http://my.oschina.net/u/935975/blog …
systemtap 跟踪PHP
参考资料: http://php.net/manual/zh/features.dtrace.php 通过ma …
java调试之jconsole
参考资料: http://jiajun.iteye.com/blog/810150 https://docs. …
C语言中的可变参数
参考: http://www.tutorialspoint.com/c_standard_library/c_ …
php 之 xhprof
参考资料:http://blog.aboutc.net/profiling/17/php-profiler-x …
javascript 之文件下载
一般来讲,浏览器中下载文件都是一个链接给浏览器,下载进度有浏览器来显示;比较先进一些的实现就是通过js不断地循 …