您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. Lcc C Compiler

  2. aWhat's new in the new version of lcc-win ---------------------------------------- Dec 3: Added SphericalBesselY + SphericalBesselK + SphericalBesselJ to the special functions package. Updated the documentation. Dec 2: Fixed problems with comparison
  3. 所属分类:C

    • 发布日期:2010-09-30
    • 文件大小:6291456
    • 提供者:ywj1225
  1. DebugView.zip

  2. ##在客户机上,你不可能安装调试环境!debug输出 是很好的方法! QQ252738331 #ifdef _DEBUG #ifndef TRACE_TZY #define TRACE_TZY(...) \ { \ CString _sTemp_(_T("")); \ CString _sInfo_(_T("")); \ _sTemp_ = _T(__FILE__); \ _sInfo_ = _sTemp_.Right(_sTemp_.GetLength() - _sTemp_.Reverse
  3. 所属分类:Android

    • 发布日期:2014-05-06
    • 文件大小:293888
    • 提供者:zhenwo89
  1. ffmpeg编译的android可用的so文件,多个版本

  2. 经过本人测试,可以调用并成功执行ffmpeg的命令 jni相关的c语言代码为 #include #include #include #ifdef ANDROID #include #include #define LOGE(format, ...) __android_log_print(ANDROID_LOG_ERROR, "(>__<) " format "\n", ##__VA_ARGS__) #define LOGI(format, .. .) LOGE("(^_
  3. 所属分类:Android

    • 发布日期:2016-01-19
    • 文件大小:4194304
    • 提供者:cdsun
  1. debug宏合集dbg.h

  2. debug 宏合集 #ifdef NDEBUG #define debug(M, ...) #else #define debug(M, ...) fprintf(stderr, "DEBUG %s:%d: " M "\n", __FILE__, __LINE__, ##__VA_ARGS__) //牛逼 #endif #define clean_errno() (errno == 0 ? "None" : strerror(errno)) #define log_err(M, ...) fp
  3. 所属分类:Linux

    • 发布日期:2016-10-14
    • 文件大小:1024
    • 提供者:dearsq
  1. __VA_ARGS__用法

  2. 调试信息的输出方法有很多种,  例如直接用printf,  或者出错时使用perror, fprintf等将信息直接打印到终端上, 在Qt上面一般使用qDebug,而守护进程则一般是使用syslog将调试信息输出到日志文件中等等
  3. 所属分类:C

    • 发布日期:2018-02-05
    • 文件大小:15360
    • 提供者:laozhusb
  1. C++ 17转发一个函数调用的完美实现

  2. 前言 本文主要给大家介绍了关于C++17转发一个函数调用的相关内容,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍吧。 方法如下 首先你灵光一闪: #define WARP_CALL(fun, ...) fun(__VA_ARGS__) 不我们并不喜欢宏,扩展性太差了 template R warp_call(R(*fun)(T1, T2, T3), T1 a, T2 b, T3 c) { return fun(a, b, c); } 如果你写出来上面这段代码,你肯定是从C转
  3. 所属分类:其它

    • 发布日期:2020-12-26
    • 文件大小:50176
    • 提供者:weixin_38697557