C++day5

思维导图

C语言练习

练习题 

 

 1 #include <iostream>
 2 #include <cstring>
 3 #include <cstdlib>
 4 #include <unistd.h>
 5 #include <sstream>
 6 #include <vector>
 7 #include <memory>
 8 
 9 using namespace std;
10 
11 enum TYPE{
12     A,
13     B,
14     C,
15     D
16 };
17 //武器类
18 class Weapon{
19 private:
20     int atk=10;
21     enum TYPE type=A;
22 public:
23     Weapon(){
24         cout<<"武器"<<endl;
25     }
26     virtual void set(int* t){*t+=this->atk;}
27     virtual int get(){return type;}
28 };
29 //长剑类
30 class Sword:public Weapon{
31 private:
32     int hp=100;
33     enum TYPE type=B;
34 public:
35     Sword(){
36         cout<<"长剑类"<<endl;
37     }
38     void set(int* t){*t+=this->hp;}
39     int get(){return type;}
40 };
41 //短剑类
42 class Blade:public Weapon{
43 private:
44     int spd=10;
45     enum TYPE type=C;
46 public:
47     Blade(){
48         cout<<"短剑类"<<endl;
49     }
50     void set(int* t){*t+=this->spd;}
51     int get(){return type;}
52 };
53 //斧头类
54 class Axe:public Weapon{
55 private:
56     int def=10;
57     enum TYPE type=D;
58 public:
59     Axe(){
60         cout<<"斧头类"<<endl;
61     }
62     void set(int* t){*t+=this->def;}
63     int get(){return type;}
64 };
65 //英雄类
66 class Hero{
67 private:
68     int atk=0;
69     int hp=0;
70     int spd=0;
71     int def=0;
72 public:
73     void equipWeapon(Weapon* p){
74         if(p->get()==A)
75         {
76             int* t=&atk;
77             p->set(t);
78         }
79         if(p->get()==B)
80         {
81             int* t=&hp;
82             p->set(t);
83         }
84         if(p->get()==C)
85         {
86             int* t=&spd;
87             p->set(t);
88         }
89         if(p->get()==D)
90         {
91             int* t=&def;
92             p->set(t);
93         }
94         //int* t=&hp;
95         //p->set(t);
96     }
97     void show(){
98         cout<<"atk="<<atk<<endl;
99         cout<<"hp="<<hp<<endl;
00         cout<<"spd="<<spd<<endl;
01         cout<<"def="<<def<<endl;
02     }
03 };
04 int main(int argc,const char** argv){
05     Hero doro;
06     Sword s;
07     Blade b;                                                              
08     Axe a;
09     Weapon* w1=&s;
10     Weapon* w2=&b;
11     Weapon* w3=&a;
12 
13     doro.equipWeapon(w1);
14     doro.show();
15     doro.equipWeapon(w2);
16     doro.show();
17     return 0;
18 }
19 

结果:

C++ 标准库中,并没有名为 `day_iterator` 的参数或类型。可能用户提到的 `day_iterator` 是对某些迭代器(iterator)概念的一种误解,或者是特定库中的自定义类型。 在标准库中,与日期相关的功能主要出现在 `<chrono>` 头文件中,而 C++20 引入了更完整的日期和时间处理功能,包括 `std::chrono::year_month_day` 和相关的日期操作。然而,C++ 标准库并未提供专门的 `day_iterator` 类型用于遍历日期。 如果需要实现类似功能,可以自定义一个日期迭代器,例如使用 `std::chrono` 中的日期操作来实现逐日递增的迭代器[^1]。 以下是一个简单的示例,展示如何使用 C++20 的 `<chrono>` 库来实现一个“按天递增”的迭代器: ```cpp #include <iostream> #include <chrono> namespace chrono = std::chrono; class day_iterator { private: chrono::sys_days _current; public: using iterator_category = std::forward_iterator_tag; using value_type = chrono::sys_days; using difference_type = std::ptrdiff_t; using pointer = const chrono::sys_days*; using reference = const chrono::sys_days&; explicit day_iterator(chrono::sys_days start) : _current(start) {} reference operator*() const { return _current; } pointer operator->() const { return &_current; } day_iterator& operator++() { _current += chrono::days(1); return *this; } day_iterator operator++(int) { day_iterator tmp = *this; ++(*this); return tmp; } bool operator==(const day_iterator& other) const { return _current == other._current; } bool operator!=(const day_iterator& other) const { return !(*this == other); } }; int main() { // 从 2023-10-01 开始 auto start_date = chrono::sys_days{chrono::year(2023)/10/1}; auto end_date = chrono::sys_days{chrono::year(2023)/10/6}; day_iterator begin(start_date); day_iterator end(end_date); for (auto it = begin; it != end; ++it) { auto ymd = chrono::year_month_day(*it); std::cout << static_cast<std::string>(ymd) << std::endl; } return 0; } ``` 该程序输出如下内容: ``` 2023-10-01 2023-10-02 2023-10-03 2023-10-04 2023-10-05 ``` 上述代码展示了如何创建一个前向迭代器,用于遍历从起始日期到结束日期之间的每一天。这个自定义的 `day_iterator` 实现了基本的迭代器接口,支持前置递增、解引用和比较操作。 ### 示例说明 - 使用 `std::chrono::sys_days` 表示系统时钟上的日期。 - 每次调用 `operator++()` 都会将当前日期增加一天。 - 迭代器支持与标准算法兼容的接口,例如 `begin()` 和 `end()`。 ### 注意事项 - 该实现是前向迭代器(`std::forward_iterator_tag`),不支持双向或随机访问。 - 如果未使用 C++20 或 `<chrono>` 的日历功能,可能需要依赖第三方库如 Boost.Date_Time 来实现类似的日期迭代功能。
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值