码迷,mamicode.com
首页 >  
搜索关键字:ifdef    ( 750个结果
#ifdef 宏定义一个main编译客户端服务端2套代码
#include <iostream> using namespace std; #include "ProWrapper.h" #include "ServerSocket.h" #ifdef SERVERMAIN int main() { ServerSocket serversocks; se... ...
分类:其他好文   时间:2019-08-19 17:32:42    阅读次数:82
PAT B1024/A1073 科学计数法
书中AC代码 include include include include const int max_n = 10100; using namespace std; void Print(bool a) { if(!a) printf(" "); } int main() { ifdef ONL ...
分类:其他好文   时间:2019-08-10 15:47:49    阅读次数:94
linux内核中#if IS_ENABLED(CONFIG_XXX)与#ifdef CONFIG_XXX的区别
1. #if IS_ENABLED(CONFIG_XXX) 1.1 IS_ENABLED的定义如下: /* * IS_ENABLED(CONFIG_FOO) evaluates to 1 if CONFIG_FOO is set to 'y' or 'm', * 0 otherwise. */ #d ...
分类:系统相关   时间:2019-08-09 13:36:58    阅读次数:137
PAT B1021 个位数统计 (15)
AC代码 include include include using namespace std; const int max_n = 1010; char ans[max_n]; int count[10][2] = {0}; int main() { ifdef ONLINE_JUDGE els ...
分类:其他好文   时间:2019-08-06 01:09:03    阅读次数:79
delphi读写INI系统配置文件
delphi读写INI系统配置文件 一、调用delphi内建单元 uses System.IniFiles; 1、使用类TIniFile 2、类TIniFile的主要方法和函数: {$IFDEF MSWINDOWS} { TIniFile - Encapsulates the Windows INI... ...
分类:Windows程序   时间:2019-08-04 10:22:14    阅读次数:228
uni-app 动态修改标题栏按钮名称
onReady() { let buttons = '按钮' //buttons = '\ue670' 如果是字体图标需要引入ttf文件 // #ifdef APP-PLUS var currentWebview = this.$mp.page.$getAppWebview(); console.l... ...
分类:移动开发   时间:2019-08-02 11:06:28    阅读次数:1237
GCC编译四步标准
一,预编译 操作步骤:gcc -E hello.c -o hello.i 主要作用: 处理关于 “#” 的指令 【1】删除#define,展开所有宏定义。例#define portnumber 3333 【2】处理条件预编译 #if, #ifdef, #if, #elif,#endif 【3】处理“ ...
分类:其他好文   时间:2019-07-16 18:34:19    阅读次数:97
TEST
```cpp define DEBUG define LOCAL include using namespace std; int main() { ios_base::sync_with_stdio(false); ifdef LOCAL cout ...
分类:其他好文   时间:2019-07-14 17:57:32    阅读次数:88
20190710记录2:插值图像拼接融合记录
6、对图像拼接边界进行过渡处理。向内收进去25像素的圈,两图各占50%。 // Imagejoint.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include "Imagejoint.h" #include <afxwin.h> #ifdef _DEB ...
分类:其他好文   时间:2019-07-10 18:34:45    阅读次数:99
插值代码备份2
// Imagejoint.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include "Imagejoint.h" #include "math.h" #include #ifdef _DEBUG #define new DEBUG_NEW #endi... ...
分类:其他好文   时间:2019-07-08 16:32:48    阅读次数:111
750条   上一页 1 ... 6 7 8 9 10 ... 75 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!