大约有 45,000 项符合查询结果(耗时:0.0373秒) [XML]

https://www.tsingfun.com/down/code/66.html 

libcurl 32位动态dll库、静态lib库下载 - 源码下载 - 清泛网 - 专注C/C++及内核技术

...源码下载地址:https: curl haxx se download html采用cmake生成sln解决方案,vs编译。源码编译好的libcurl库,包括动态库dll版本,和静态库lib版本。 静态库将代码打包进最终的可执行文件,不用复制libcurl.dll便可运行,不过可执行文件...
https://www.tsingfun.com/it/os... 

一次解决Linux下-bash: ll: command not found,语法、目录不高亮显示的问...

一次解决Linux下-bash: ll: command not found,语法、目录不高亮显示的问题linux-bashrc-ll-dircolor通过修改用户目录下的 bashrc文件,添加ll,l命令别名,及语法目录高亮显示。 vi ~/.bashrc 放开上面几行 # You may uncomment the following lines if y...
https://www.tsingfun.com/it/te... 

解决】phpMyAdmin 导入数据文件最大限制 - 更多技术 - 清泛网 - 专注C/C++及内核技术

解决】phpMyAdmin 导入数据文件最大限制phpmyadmin_post_max_size etc php 7 0 apache2 php ini 默认配置2M,即通过http post上传的文件最大2M,修改配置搞定: PHP上传文件大小限制upload_max_filesize = 200M http post发送文件大小限 /etc/php/7.0/apache2/p...
https://www.tsingfun.com/it/cpp/2568.html 

解决】标准库std::min/std::max 与 Windows.h中的宏 min/max 冲突问题 - ...

解决】标准库std::min/std::max 与 Windows.h中的宏 min/max 冲突问题在包含了Windows h的 C++ 源代码中使用std::min std::max会出现错误。int main(){ int x = std::max(0, 1); int y = std::min(-1, 0);}error C2589: & 在包含了 Windows.h 的 C++ 源代码中使用 st...
https://www.tsingfun.com/it/cp... 

C++ protobuf使用入门实例 - C/C++ - 清泛网 - 专注C/C++及内核技术

...实例cpp_protobuf_demoprotobuf 是结构化数据的系列化 反序列化解决方案,类似XML JSON,但他的运行效率及压缩率均较后者高一个数量级,且完全的跨平台。使用步骤如下:1、定义一个 proto数据结构文件 protobuf 是结构化数据的系列化...
https://www.tsingfun.com/it/cp... 

解决】munmap_chunk(): invalid pointer - C/C++ - 清泛网 - 专注C/C++及内核技术

解决】munmap_chunk(): invalid pointermunmap_chunk-invalid-pointer原因:new malloc出来的指针被覆盖掉了,然后delete free就会报这个错误。例如:char* word = (char*)malloc(10);word = "abc"; 应使用 strcpy(word, "abc");free(word) 原因:new/malloc出来的指针被...
https://www.tsingfun.com/it/cp... 

解决】double free or corruption (!prev) - C/C++ - 清泛网 - 专注C/C++及内核技术

解决】double free or corruption (!prev)double-free-or-corruption-prev*** glibc detected *** cupd: double free or corruption (!prev): 0x093b1208 ***可能原因:1、多次释放同一内存区,需要检查代码,是否出现了对同一内存区释放两 *** glibc detected *** ./cupd:...
https://www.tsingfun.com/it/te... 

解决spawn-fcgi 报错:child exited with: xxx的方法 - 更多技术 - 清泛网 ...

解决spawn-fcgi 报错:child exited with: xxx的方法spawn-fcgi-child-exited-with出错的时候请加 -n 参数,会显示详细的错误信息:如:spawn-fcgi xxx -n出错的时候请加 -n 参数,会显示详细的错误信息: 如:spawn-fcgi xxx -nspawn fcgi
https://www.tsingfun.com/it/os_kernel/2538.html 

Can\'t locate Switch.pm in @INC 的解决方法 - 操作系统(内核) - 清泛网 -...

Can't locate Switch.pm in @INC 的解决方法在Perl脚本中使用switch语法,执行时报错Can& 39;t locate Switch pm in @INC ,原因是Perl默认没有安装Switch模块,需要自行安装。安装方法:1、通过包管理器安装:sudo ap 在Perl脚本中使用switch语法,执...
https://www.tsingfun.com/it/tech/2536.html 

jQuery offset位置不准的解决方法:使用positon - 更多技术 - 清泛网 - 专...

jQuery offset位置不准的解决方法:使用positon如果发现jQuery对象的offset位置与预想不一致的情况下,可以尝试使用position()函数:$(obj) position() top;offset(): 获取元素在文档中的位置。position(): 获取相对(父元素) 如果发现jQuery对象的...