码迷,mamicode.com
首页 >  
搜索关键字:define    ( 25272个结果
type cast & escape
/// fas /** * fasf */ console.log(b=3+'uio',typeof(b)) console.log(b=null+'uio',typeof(b)) console.log(b=true+'uio',typeof(b)) console.log(b=false+'ui ...
分类:其他好文   时间:2020-12-24 12:30:32    阅读次数:0
4-FreeRTOS 静态任务的创建/删除
需求:静态创建任务(任务堆栈、控制块由用户自己指定) ①用一个任务创建两个任务Task1和Task2后,将自身任务删除 ②在Task1执行5次后,用Task1将Task2删除 ③Task1执行10次后,将自身删除 代码: ①需要将该宏打开: #define configSUPPORT_STATIC_ ...
分类:其他好文   时间:2020-12-24 12:00:47    阅读次数:0
E. Plan of Lectures(给定拓扑图求输出序列满足存在给定链)
题:https://codeforces.com/contest/1463/problem/E 题意:给定拓扑图,在给定链(以边的形式给出),问是否能在拓扑顺序中找出一个序列使得这个序列包含给定的链(x->y->z)。 分析: 给定的拓扑图我们可以当作一个DAG,然后给定的m个边我们可以在原图上进行 ...
分类:其他好文   时间:2020-12-24 11:46:03    阅读次数:0
PHP大小写问题
这里复制下相关的大小写规则: 1. 变量名区分大小写 <?php $abc = 'abcd'; echo $abc; //输出 'abcd' echo $aBc; //无输出 echo $ABC; //无输出 2. 常量名默认区分大小写,通常都写为大写 <?php define("ABC","Hel ...
分类:Web程序   时间:2020-12-23 11:54:39    阅读次数:0
实验二——动态规划·LCS
/*Hatsune Miku 4ever!*/ #include <bits/stdc++.h> using namespace std; typedef long long ll; #define _for(i,a,b) for(int i = (a);i < b;i ++) #define _r ...
分类:其他好文   时间:2020-12-23 11:47:45    阅读次数:0
实验三——贪心算法&#183;哈夫曼编码
/*Hatsune Miku 4ever!*/ #include <bits/stdc++.h> using namespace std; typedef long long ll; #define _for(i,a,b) for(int i = (a);i < b;i ++) #define _r ...
分类:编程语言   时间:2020-12-23 11:45:22    阅读次数:0
实验四——回溯法·n皇后
/*Hatsune Miku 4ever!*/ #include <bits/stdc++.h> using namespace std; typedef long long ll; #define _for(i,a,b) for(int i = (a);i < b;i ++) #define _r ...
分类:其他好文   时间:2020-12-23 11:43:21    阅读次数:0
Qt-透明窗体之半透明
.pro 1 QT += core gui 2 3 greaterThan(QT_MAJOR_VERSION, 4): QT += widgets 4 5 CONFIG += c++11 6 7 # The following define makes your compiler emit warn ...
分类:Windows程序   时间:2020-12-22 12:29:38    阅读次数:0
Qt-透明窗体之异型窗体
.pro 1 QT += core gui 2 3 greaterThan(QT_MAJOR_VERSION, 4): QT += widgets 4 5 CONFIG += c++11 6 7 # The following define makes your compiler emit warn ...
分类:Windows程序   时间:2020-12-22 12:27:01    阅读次数:0
vue原理之-神奇的Object.defineProperty
vue2.0通过defineProperty进行数据双向绑定 例如:(他接受三个参数,都是必填!) var a= {} Object.defineProperty(a,"b",{ value:123 }) console.log(a.b);//123 传入参数 第一个参数:目标对象 第二个参数:需要 ...
分类:其他好文   时间:2020-12-21 10:56:17    阅读次数:0
25272条   上一页 1 ... 28 29 30 31 32 ... 2528 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!