会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
JxLi
博客园
首页
新随笔
联系
订阅
管理
2025年11月28日
OOP-实验4
摘要: 实验任务1 源代码task1 1 // 类GradeCalc声明 2 3 #pragma once 4 5 #include <vector> 6 #include <array> 7 #include <string> 8 9 class GradeCalc 10 { 11 public: 12
阅读全文
posted @ 2025-11-28 19:15 FF-10086
阅读(7)
评论(0)
推荐(0)
2025年11月22日
OOP-实验3
摘要: 实验任务1 源代码task1 1 // Button类定义、实现 2 3 #pragma once 4 5 #include <iostream> 6 #include <string> 7 8 class Button 9 { 10 public: 11 Button(const std::str
阅读全文
posted @ 2025-11-22 20:55 FF-10086
阅读(6)
评论(1)
推荐(0)
2025年10月23日
OOP-实验2
摘要: 实验任务1 源代码task1 1 // 类T的声明、友元函数声明 2 3 #pragma once 4 5 #include <string> 6 7 // 类T: 声明 8 class T 9 { 10 // 对象属性、方法 11 public: 12 T(int x = 0, int y = 0
阅读全文
posted @ 2025-10-23 16:25 FF-10086
阅读(26)
评论(1)
推荐(0)
2025年10月12日
博客地址
摘要: https://www.cnblogs.com/JxLi
阅读全文
posted @ 2025-10-12 17:49 FF-10086
阅读(12)
评论(0)
推荐(0)
OOP-实验1
摘要: 实验任务1 源代码task1.cpp 1 // 现代C++标准库、算法库体验 2 // 1. 字符串string、动态数组容器类vector、迭代器 3 // 2. 算法库:反转元素次序、旋转元素 4 // 3. 函数模板、const引用作为形参 5 6 #include <iostream> 7
阅读全文
posted @ 2025-10-12 17:41 FF-10086
阅读(19)
评论(1)
推荐(0)
公告