在Mac下配置php开发环境:Apache+php+MySql 启动Apache有两种方法1、打开网络共享打开”系统偏好设置”->”共享”,在”互联网共享”那一项前面打√。2、打开终端,输入sudo apachectl start这时需要输...
google protobuf学习笔记一:windows下环境配置 欢迎转载,转载请注明原文地址:http://blog.csdn.net/majianfei1023/article/details/45371743protobuf的使用和原理,请查看:http://blog.csdn.net/majianfei1...
《coredump问题原理探究》Linux x86版7.6节 Map coredump例子 定位一个map相关的coredump来熟悉一下:Core was generated by `./xuzhina_dump_c07_s3_ex 5 / 6.Program terminated with signal 11, Segmentation...
C++求2进制01不同的位数 #include <iostream>using namespace std;int Grial(int x,int y){int count = 0;while(x!=0 || y!=0){if( ((x&0x1) ^ (y&0x1)) )count++;...
EL表达式 最近做DRP项目的时候,学习到了一个新的知识。EL表达式,这个东西特别的简单,那我为什么还要写一篇博客呢,一来推荐给更多的人使用,二来EL表达式给我带来了巨...
整型数的溢出 #include <stdio.h>#include <limits.h>int main(){ printf("INT_MAX+1=%d ",INT_MAX+1); printf("INT_MAX+INT_MAX=%d ",INT_MA...
java.lang.IllegalStateException: File has been moved - cannot be read again 在用jqueryfileupload上传文件时报如下错误:java.lang.IllegalStateException: File has been moved - cannot be read again后台接口是spring mvc, ...
VC++信息安全编程(13)Windows2000/xp/vista/7磁盘扇区读写技术 有些时候,我们读取磁盘文件,会被hook.我们读到的可能并非实际的文件。我们直接读取磁盘扇区获取数据。实现磁盘数据的读写,不依赖WindowsAPI。[cpp]view plai...
POJ1420 Spreadsheet(拓扑排序)注意的是超内存 Spreadsheet
[置顶] duilib中Richedit如何支持TextChanged 在duilib开发中,小伙伴会因为CEditUI的各种问题,而转为使用CRichEditUI来代替。但是CRichEditUI控件却不支持文字变化通知事件,下面通过简单几行代码让RichEdi...