Linux内核源码分析 -- 同步原语 -- 自旋锁 spinlock_t typedef struct spinlock { union { struct raw_spinlock rlock; #ifdef CONFIG_DEBUG_LOCK_ALLOC # define LOCK_PADSIZ ...
分类:
系统相关 时间:
2020-06-08 00:16:40
阅读次数:
138
路由守卫 【不需要】设置路由守卫 onLaunch: function() { if (没有登录) { #ifdef H5 ...跳转登录 #endif #ifdef MP-WEIXIN ...跳转登录 #endif } } 然后【分别】在使用需要登录的功能前检查和跳转登录。 相关 https:// ...
分类:
移动开发 时间:
2020-05-29 09:19:37
阅读次数:
190
1、宏定义 #define:写法为#define 标识符(形参) 字符串,作用是定义标识符为字符串。 #if、#else、#endif、#elif:和去掉#意思差不多,只是最后一定要加#endif #ifdef:如果后面的宏定义了,那么编译 #ifndef:如果后面的宏没有定义,那么编译 #unde ...
分类:
其他好文 时间:
2020-05-26 01:20:06
阅读次数:
100
题目描述 n define fo(a,b,c) for (a=b; a=c; a ) define ll long long // define file using namespace std; int n,i,j,k,l; ll m,s; int main() { ifdef file freo ...
分类:
其他好文 时间:
2020-05-23 09:24:59
阅读次数:
48
#ifdef WIN32 #pragma execution_character_set("utf-8") #endif #if _MSC_VER >= 1600#pragma execution_character_set("utf-8") #endif 一般有中文的字符串我会这种转:QStrin ...
分类:
其他好文 时间:
2020-05-13 12:09:45
阅读次数:
65
// /App.vueonLaunch: function() { // #ifdef APP-PLUS const clientInfo = plus.push.getClientInfo() console.log(clientInfo) // #endif} 返回信息: { "id": "un ...
分类:
移动开发 时间:
2020-05-03 15:02:30
阅读次数:
694
1. 常见的预编译指令和条件编译项有如下这些: #define、#undef、#ifdef、#ifndef、#if、#elif、#else、#endif 1 #define 定义一个预处理宏 2 #undef 取消宏的定义 3 #if 编译预处理中的条件命令,相当于C语法中的if语句 4 #ifde ...
分类:
编程语言 时间:
2020-04-29 18:14:57
阅读次数:
77
话不多说,上代码 // #ifdef APP-PLUS var webView = this.$mp.page.$getAppWebview(); // 修改buttons webView.setTitleNViewButtonStyle(0, { width: '0', }); // #endif ...
分类:
移动开发 时间:
2020-04-25 12:46:08
阅读次数:
798
#ifdef WIN32 _tsetlocale(LC_ALL, _T(" ")); ::AllocConsole(); ::freopen("CONIN$", "r", stdin); ::freopen("CONOUT$", "w", stdout); ::freopen("CONOUT$", ...
分类:
其他好文 时间:
2020-04-25 09:11:28
阅读次数:
68
RK为了解决很多显示器显示图片溢出的问题,将scale默认设置为95%,只要将其值修改为100%就OK了modified patch : system/displayd/Config.h #define ENABLE_OTG_MANAGER 0 #ifdef DISPLAY_POLICY_BOX-# ...
分类:
其他好文 时间:
2020-04-07 13:04:27
阅读次数:
163