int_range.h #ifndef _INT_RANGE_H_ #define _INT_RANGE_H_ #include "file_reader.h" #include "buffer.h" #include "limits.h" #include "string.h" #ifdef __ ...
分类:
其他好文 时间:
2019-12-10 17:07:41
阅读次数:
86
大一开始了解ACM,兴趣使然,看了些刘汝佳写的书,颇有心得,于是记录下来,不定时更新。 ACM的输入: #define LOCAL #include <stdio.h> int main() { #ifdef LOCAL freopen("data.in","r",stdin); freopen(" ...
分类:
其他好文 时间:
2019-12-10 00:32:18
阅读次数:
141
1. MyListCtrl.h #pragma once #include <vector> #include "resource.h" // CMyListCtrl #ifdef DLL_IMPLEMENT #define DLL_API __declspec(dllexport) #else # ...
分类:
其他好文 时间:
2019-12-07 16:33:20
阅读次数:
88
[TOC] 语法 c++ 随机数mt19937 `随机数范围unsigned int` complex 浮点数 STL函数 decltype 手动开启Ofast ifdef 进制转换 cmath java `编译 javac Main.java //生成Main.class` 数据类型 `var n ...
分类:
其他好文 时间:
2019-12-04 01:12:25
阅读次数:
149
一、制作dll动态库 (1)创建动态库工程Dll-1,如图所示 (2)新建Dll-1.h头文件 // Dll-1.h #ifdef Dll_1_API #else #define Dll_1_API _declspec(dllimport) #endif // Dll_1_API Dll_1_API ...
分类:
其他好文 时间:
2019-11-23 16:41:07
阅读次数:
147
可能原因: 1.头文件中类或结构体定义缺失分号 “ ; ” 2.使用ifdef 条件编译中代码块缺少 花括号(}) 或 分号(;) ,示例如下: #ifdef XXX void func() { #endif ...
分类:
编程语言 时间:
2019-11-22 19:19:24
阅读次数:
91
#ifdef _WIN64 extern int MessageBoxA(HWND, LPCSTR, LPCSTR, UINT); .....etc #pragma warning( disable:4273 ) A better solution is to rename MessageBoxA ...
// MineSweeping.cpp: 定义 DLL 的初始化例程。//#include "stdafx.h"#include "MineSweeping.h"#ifdef _DEBUG#define new DEBUG_NEW#endif////TODO: 如果此 DLL 相对于 MFC DLL... ...
分类:
其他好文 时间:
2019-11-13 12:58:33
阅读次数:
74
1.第一次做第三方微信登陆,所以在这方面话太多时间了,主要是在获取code的时候感觉头痛,uni-app没有说明如何获取code,后来在网上搜索诸多信息后终于解决了问题 uni-app在app端第三方微信登陆时要获取code再传给后端,后端根据code向微信发送登陆请求: // #ifdef APP ...
分类:
微信 时间:
2019-11-12 13:19:01
阅读次数:
121
#include "stdafx.h" #include #include #include #include #include #include #ifdef _MSC_VER // M$的编译器要给予特殊照顾 #if _MSC_VER = 1600 // 据说VC10及以上版本有stdint.h... ...
分类:
编程语言 时间:
2019-11-02 09:50:18
阅读次数:
90