文章
6
标签
6
分类
0
首页
标签
分类
友链
关于
Aris系统已上线
HelloWorld
首页
标签
分类
友链
关于
HelloWorld
发表于
2025-01-16
|
更新于
2025-02-18
|
浏览量:
你好!世界!
文章作者:
HitoriKoishi
文章链接:
https://hitorikoishi.github.io/2025/01/16/HelloWorld/
版权声明:
本博客所有文章除特别声明外,均采用
CC BY-NC-SA 4.0
许可协议。转载请注明来源
Aris系统已上线
!
Hello World
下一篇
c++ whale market项目总结
第一次从无到有的构建了第一个多模块化复杂系统,根据教程完成了界面—系统—文件的三层信息交互,也算是由模仿走向创造的第一步 程序架构 整体的程序大致分为三个主要部分: 用户、商品、订单的数据结构部分,包含对数据结构元素的修改、输出,以及与文件的信息交互 1234567891011121314151617181920212223242526272829303132#pragma once#include <string>class User { public: std::string user_ID; std::string user_name; std::string user_passwd; std::string contact; std::string address; double balance;};// 用户与文件操作void pull_users();void push_users();// 用户获取,添加,与删除User* get_user(int index);bool...
HitoriKoishi
文章
6
标签
6
分类
0
Follow Me
公告
record the moment
最新文章
Python日志库loguru
2025-11-24
LLM-CS336
2025-10-20
Go语言入门
2025-06-24
Google File System 笔记
2025-06-21
c++ whale market项目总结
2025-02-18