iohannes long
搜索文章
机器人
python
c++
金融
linux
前端
中间件
java
求解
登录
机器人
python
c++
金融
linux
前端
中间件
java
求解
登录
佚名
欢迎访问我的个人博客,我将在这里与你分享更多精彩内容
c++内存模型
内存模型 静态内存模型 主要是类(或结构)对象在内存中的布局。也就是类(或结构)成员在内存中是如何存放。
作者:iohannes
发布时间:2025-03-14
分类:
c++
cachetools
安装 pip3 install cachetools 常见缓存分类 class cachetools.Cache(maxsize, getsizeof=None) class cachetools.LRUCache(maxsize, getsizeof=None). Least Recently U
作者:iohannes
发布时间:2025-03-14
分类:
python
cfd常见求解算法
有限体积法/Finite Volume Method (FVM) 这是一种基于离散化方程的方法,将连续的偏微分方程转化为离散的边界条件方程,然后通过迭代&#
作者:iohannes
发布时间:2025-03-14
分类:
求解
char*和char[]的区别
char* p 在常量区分配了内存存储,栈上分配一地址给指针p并指向常量 char array[] array 表示的是一个char类型的数组指针,该指针所指向的数组
作者:iohannes
发布时间:2025-03-14
分类:
c++
class to json string
import json from json import JSONEncoder class Employee: def __init__(self, name, salary, address): self.name = name self.salary
作者:iohannes
发布时间:2025-03-14
分类:
python
copy lib and run exe
copy all lib ldd exe_file | grep "=> /" | awk '{print $3}' | xargs -I '{}' cp -v '{}' /dest_dir export lib file export LD_LIBRARY_PATH=$LD_LIBRARY_PA
作者:iohannes
发布时间:2025-03-14
分类:
linux
CRTP奇异递归模板模式
CRTP CRTP全称是 curious recurring template pattern,是一种c++的设计模式,精巧地结合了继承和模板编程的技术。 可以用来给c++的class提供额外功能、实现静态多态等。<
作者:iohannes
发布时间:2025-03-14
分类:
c++
ctp下单和其响应
报单(下单) ReqOrderInsert 必填字段 TThostFtdcBrokerIDType BrokerID 经纪公司代码 必填 TThostFtdcInvestorIDType InvestorID 投资者代码 必填 TThostFtdcInstrumentIDType Instrumen
作者:iohannes
发布时间:2025-03-14
分类:
c++
curl 之web hdfs
#pragma once #include <curl/curl.h> #include <string> using std::string; #include <sstream> using std::stringstream; #include <glog/logging.h> #i
作者:iohannes
发布时间:2025-03-14
分类:
c++
div位置设置
自己水平居中 .my-div{ margin: auto; } 自己固定位置 居上 .my-div{ position: absolute; top: 0px; }
作者:iohannes
发布时间:2025-03-14
分类:
前端
共 278 篇文章
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
页
友情链接
暂无友情链接