
C
王桑的一天
最省电的语言。
酒醉无人问,病卧自煎熬。生时不逢春,死亦落蓬蒿。
展开
-
驼峰命名法与下划线命名法之争
变量命名法则原创 2022-11-04 13:34:18 · 1826 阅读 · 1 评论 -
[Python] Python 加速对比
先写一个 dll// Dll1.h#ifndef PCH_H#define PCH_H#ifdef __cplusplusextern "C" {#endif __declspec(dllexport) int fib(int n); __declspec(dllexport) int testfib(int value, int n);#ifdef __cplusplus}#endif#endif //PCH_H// Dll1.c#include "pch.h原创 2022-05-25 10:18:49 · 208 阅读 · 0 评论 -
[C++] double 精度丢失问题
文章目录场景错误方案1错误方案2正确方案场景double 保留8位小数,且四舍五入错误方案1typedef long long int64;int main(){ double v1 = 5726.867366095; double v2 = 5837.754018494999; const int64 N = pow(10, 8); double newV1 = (int64)(round(v1 * N)) / double(N); double new原创 2022-03-22 14:53:33 · 7612 阅读 · 1 评论 -
Python调用 dll 文件
Windows 系统VC 编译器// func.c#ifdef _MSC_VER #define DLL_EXPORT __declspec( dllexport ) #else #define DLL_EXPORT#endifDLL_EXPORT int add(int a,int b){ return a+b;}编译:cl /LD func.c...原创 2019-09-10 18:04:30 · 14496 阅读 · 3 评论 -
[C/C++] 解析命令行参数, 形如 -a
int main(int argc, char *argv[]){ int option_a = 0, option_b = 0; while (*++argv != NULL && **argv == '-') { switch (*++*argv) { case 'a': option_a = atoi(*++argv); break; case 'b':原创 2022-03-09 14:39:54 · 447 阅读 · 0 评论 -
[C++]结构体声明方式决定内容是否初始化
typedef struct Test { int score; std::string name; std::vector<int> arr;} Test;typedef struct Test2 { Test2(); int score; std::string name; std::vector<int> arr;} Test;int main(){ Test t; // 成员不会初始化, 初值是内存残留值 Test* tp1 = new Te原创 2022-03-01 13:33:15 · 657 阅读 · 0 评论 -
[C++]void* 类型指针能否使用 delete 释放空间
void* 类型指针能否使用 delete 释放空间?答案是取决于指向的对象:// 只包含基本类型typedef struct A { char name[32]; int age; double score;} A;// 包含指针和对象typedef struct B { char *name; int age; double score; std::string addr;} B;// 与 B 一样包含对象typedef struct C { char name[3原创 2022-02-23 16:37:59 · 2302 阅读 · 0 评论 -
[C++] 关于对象及成员分配在堆还是栈
class B{public: B(){} ~B(){cout<< "~B()";} vector<double> *vec;};class A{public: A(){vec = new vector<double>(10);} ~A(){if(vec != nullptr) delete vec;} vector<double> *vec = nullptr; int arr[10] =原创 2020-09-10 13:49:33 · 1455 阅读 · 0 评论 -
[C] 数据处理应该考虑到有可能的超大数据,将空间申请在堆上
之前用 C 写的一个解析数据的 dll 文件,面对别人提供的数据文件,无法打印出数组的前30个值。检查发现是这个数据文件太大,解析成数组长度有200万,而我将空间申请在栈上,导致失败。写程序时应该考虑到可能的数据大小,将有可能很大的数据空间申请在堆上。...原创 2020-08-03 09:30:20 · 288 阅读 · 0 评论