各个cpp代码之间关系的软件 Posted on 2023-02-20 | In C++ | 画各个cpp代码之间关系的软件Doxygen 官方:https://www.doxygen.nl/manual/index.html 使用doxygen和graphviz来产生源代码函数调用图 这个 ... Read more »
python调用C++——pybind11 Posted on 2023-02-15 | In python | python调用C++——pybind11 官方:https://pybind11.readthedocs.io/en/stable/ ;中文翻译:https://github.com/charlot ... Read more »
联合调试python/C++ Posted on 2023-02-15 | In python | 联合调试python/C++我想实现在vscode里调试python代码,遇到extern的C++代码,也能跳进C++函数里。 或者说python调试过程中,想跳入C++代码,要如何实现呢? ... Read more »
python调用C++——ctypes Posted on 2023-02-13 | In python | python调用C++——ctypespython3调用cpp的方法——python调用so csdn:python3调用cpp的方法——python调用so python中使用ctypes模块可以 ... Read more »
C++创建对象、C++创建一个实例、C++实例化对象 Posted on 2023-02-10 | In C++ | C++创建对象、C++创建一个实例、C++实例化对象 csdn:C++创建对象的三种方式 C++中有三种创建对象的方法: 12345678910111213141516171819202122232 ... Read more »
python中的@classmethod、@staticmethod Posted on 2023-02-09 | In python | python中的@classmethod、@staticmethod 【python】staticmethod与classmethod深度机制解析——要知其所以然 @classmethod、@sta ... Read more »
python @property、@.setter Posted on 2023-02-09 | In python | python @property、@.setter函数作为参数 b站:Python中各种@property、@xxx.setter、@classmethod、@staticmethod 都是些啥啊? ... Read more »
python下划线 Posted on 2023-02-09 | In python | python下划线python代码里的_ 下划线 我终于把Python中下划线的含义弄清楚了(憋了很久了) 1. 前单下划线: _var变量或方法名加 单下划线:变量或方法名加 单下划线 时,向其他 ... Read more »
pip笔记 Posted on 2023-02-08 | In 工程实践 | pip笔记安装python包超时失败 stackoverflow :How to solve ReadTimeoutError: HTTPSConnectionPool(host=’pypi ... Read more »
拉格朗日插值法 Posted on 2023-02-07 | In 数学 | 拉格朗日插值法 b站:【拉格朗日插值】:思想、计算与误差 拉格朗日插值法是一种数学插值方法,用于确定一个函数在给定点外的值。这种方法通过在已知点上构造拉格朗日插值多项式来确定该函数的值。 拉格朗日插 ... Read more »