// CRC 高位字节值表 static const uint8_t auchCRCHi[] = { 0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81, 0x40, 0x0 ...
分类:
数据库 时间:
2019-12-31 10:43:32
阅读次数:
151
1.const是类中的常量,类外用define定义常量(var用来定义类内的变量,有添加控制访问限制的修饰符则可以省略 eq:public protected)类外:类外的常量属于全局,任何位置都可以访问,任意函数内部都可以访问外部定义的常量,而且常量一被定义就不可修改或者撤销类内:类内的常量属于当 ...
分类:
Web程序 时间:
2019-12-17 18:35:32
阅读次数:
102
koa-static cnpm i koa-static -d const static = requiere('koa-static') 新建static文件夹 static文件夹下面新建1.html server.js加上 server.use(static('./static')); 即可 l ...
分类:
其他好文 时间:
2019-11-06 01:00:59
阅读次数:
76
class LogUtils { //dart.vm.product 环境标识位 Release为true debug 为false static const bool isRelease = const bool.fromEnvironment("dart.vm.product"); static... ...
分类:
其他好文 时间:
2019-09-21 21:24:11
阅读次数:
118
脚本调用C++相对比较容易,使用ATL组件只需要抛双接口即可,但在exe里如何做到呢?本文实现了在exe里脚本和C++的相互调用.在EXE里也需要对外抛送一个继承自IDispatch的接口.并需要重载它的所有接口。由于水平有限,所以难免有错。 // 头文件 static const GUID IID ...
分类:
编程语言 时间:
2019-08-28 22:17:42
阅读次数:
155
``` //vov #ifndef VTIME_HPP #define VTIME_HPP #include #include #include #include #include static const std::string vTimeStamp() { time_t tt=time(NULL... ...
分类:
其他好文 时间:
2019-04-23 21:12:49
阅读次数:
187
C++中如何定义接口类?首先给接口类下了定义:接口类应该是只提供方法声明,而自身不提供方法定义的抽象类。接口类自身不能实例化,接口类的方法定义/实现只能由接口类的子类来完成。 而对于C++,其接口类一般具有以下特征: 1.最好不要有成员变量,但可以有静态常量(static const或enum)2. ...
分类:
编程语言 时间:
2019-02-12 18:37:27
阅读次数:
259
一、手动添加ON_WM_DEVICECHANGE()消息 二、添加头文件#include <Dbt.h> 三、定义设备的GUID static const GUID GUID_DEVINTERFACE_LIST[] ={ // GUID_DEVINTERFACE_USB_DEVICE USB设备的G ...
分类:
其他好文 时间:
2018-11-27 11:13:33
阅读次数:
208
1 #include <bits/stdc++.h> using namespace std ; struct bigInt { int num[ 2000 ] ; int size ; static const int maxN = 2000 ; private : void Init ( ) { ...
分类:
其他好文 时间:
2018-10-28 20:53:54
阅读次数:
288
class Base { static const int max_bit = 32; // 注意 使用的时候要减一 int base[max_bit]; public : void init() { memset(base, 0, sizeof(base)); } void insert(int ... ...
分类:
其他好文 时间:
2018-09-09 21:06:31
阅读次数:
175