// // variadic_template.h// template <typename T>class Enum {public: using Type = T; static const char * toString(T); static T toEnum(const std::strin ...
分类:
其他好文 时间:
2021-02-16 12:24:36
阅读次数:
0
错误现象: 原因分析: \u-boot-xlnx-xilinx-v2018.1\u-boot-xlnx-xilinx-v2018.1\drivers\mtd\spi\ spi_flash.c中 static const struct spi_flash_info *spi_flash_read_id ...
分类:
其他好文 时间:
2020-10-30 12:16:08
阅读次数:
60
开发1:一个基本的react组件类 代码如下: // 一个基本的react组件类 export default class TableName extends Component { static const extTypes ={ router:PropTypes.any } // 初始化 con ...
分类:
其他好文 时间:
2020-07-29 17:30:08
阅读次数:
67
const成员变量与const成员函数与const对象 static成员变量与static成员函数与static全局变量 const成员变量 1. const用于类中成员变量时,将类成员变为只读属性(只读:不能出现在“=”的左边,但在类中仍可以用一个指针来修改其值。) 所以不可以直接在类的构造函数中 ...
分类:
编程语言 时间:
2020-06-08 12:57:50
阅读次数:
67
#include<bits/stdc++.h> using namespace std; struct BigInteger { static const int BASE=10000; static const int WIDTH=4; vector<long long>s; BigInteger ...
分类:
其他好文 时间:
2020-05-31 15:45:43
阅读次数:
54
看到紫书上的这一页先是一脸懵逼,不过仔细理解还是觉得挺妙的hhhh 首先贴上前一部分代码: //结构体BigStruct可用于储存高精度非负整数 struct BigInteger { static const int BASE = 100000000; static const int WIDTH ...
分类:
其他好文 时间:
2020-05-15 19:45:47
阅读次数:
76
const 常成员函数不能修改除static以外的成员变量 static static 成员函数没有this指针 static 成员函数不能被定义成常成员函数 static 成员函数只能操作传递进来的参数和静态成员变量 const static const成员函数可以修改除static以外的成员变量 ...
分类:
编程语言 时间:
2020-04-29 14:41:37
阅读次数:
62
link 解法: maxprime存一个数的最大质因数,primeMin[i] 一个数n的质因数存在i,以n结尾所分得的最小子数组数。 class Solution { public: static const int maxn=1000000; int maxprime[maxn+1]; int ...
分类:
编程语言 时间:
2020-04-28 19:00:01
阅读次数:
84
#include <iostream> using namespace std; class A { public: A(int i); void print(); private: const int a; static const int b; }; //静态常数据成员在类外说明和初始化 con ...
分类:
编程语言 时间:
2020-03-14 18:37:36
阅读次数:
58
1 void SelfDestroy() 2 { 3 // temporary .bat file 4 static const WCHAR tempbatname[] = L"_uninsep.bat"; 5 CString csCmd; //bat contents 6 std::string ...
分类:
其他好文 时间:
2020-03-10 01:31:25
阅读次数:
55