会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
yhjXW
导航
博客园
首页
新随笔
联系
订阅
管理
公告
2024年11月24日
实验四 类的组合、继承、模板类、标准库
摘要: 任务1: task1.cpp 1 #include <iostream> 2 3 using std::cout; 4 using std::endl; 5 6 // 类A的定义 7 class A { 8 public: 9 A(int x0, int y0); 10 void display()
阅读全文
posted @ 2024-11-24 21:57 於泓瑾
阅读(7)
评论(0)
推荐(0)
编辑
2024年11月10日
实验3 类和对象_基础编程2
摘要: 任务1: window.cpp 1 #pragma once 2 #include"button.hpp" 3 #include<vector> 4 //vector 5 #include<iostream> 6 7 using std::vector; 8 using std::cout; 9 u
阅读全文
posted @ 2024-11-10 14:06 於泓瑾
阅读(11)
评论(0)
推荐(0)
编辑
2024年10月28日
实验2 类和对象_基础编程1
摘要: 任务1: 源代码task1.cpp t.cpp 1 #include "t.h" 2 #include <iostream> 3 #include <string> 4 5 using std::cout; 6 using std::endl; 7 using std::string; 8 9 //
阅读全文
posted @ 2024-10-28 19:32 於泓瑾
阅读(18)
评论(0)
推荐(0)
编辑
2024年10月14日
实验1 现代C++编程初体验
摘要: 任务1: 源代码task1.cpp 1 #include<bits/stdc++.h> 2 using namespace std; 3 4 //模板函数声明 5 template<typename T> 6 void output(const T &c); 7 8 //普通函数声明 9 void
阅读全文
posted @ 2024-10-14 19:53 於泓瑾
阅读(21)
评论(0)
推荐(0)
编辑