傻眼貓咪 发表于 2022-4-24 17:39:33

简单计时器

本帖最后由 傻眼貓咪 于 2022-4-24 17:42 编辑

因为无聊,所以又乱写代码了。因为花费时间不长(20 分钟吧),随便写的,不是很优,见笑了{:10_282:} {:10_282:} 。

输出结果如图:


C++#include <iostream>
#include <map>
#include <vector>
#include <memory>
#include <string>
#include <stdexcept>
#include <chrono>
#include <thread>

template<typename ... Args>
std::string stringFormat(const std::string& format, Args ... args)
{
        int n = std::snprintf(nullptr, 0, format.c_str(), args ...) + 1;
        if (n <= 0) {
                throw std::runtime_error("Error during formatting."); // 异常处理
        }
        auto size = static_cast<size_t> (n);
        std::unique_ptr<char[]> buf(new char); // 智能指针实现,防止内存泄漏
        std::snprintf(buf.get(), size, format.c_str(), args ...);
        return std::string(buf.get(), buf.get() + size - 1);
}

using std::string;
class Time {
public:
        int h, m, s;
        string clock; // 显示时间格式 hh:mm:ss
        Time(int, int, int);
        Time operator ++ (int);
        bool operator != (const Time&) const;
};

Time::Time(int hour, int minute, int second) : h(hour), m(minute), s(second) {
        string format = "%02d:%02d:%02d";
        clock = stringFormat(format, h, m, s);
}

Time Time::operator ++ (int) {
        ++s;
        if (s >= 60) {
                ++m;
                s -= 60;
        }
        if (m >= 60)
        {
                ++h;
                m -= 60;
        }
        string format = "%02d:%02d:%02d";
        clock = stringFormat(format, h, m, s);
        return Time(h, m, s);
}

bool Time::operator != (const Time &T)const {
        return (h != T.h) || (m != T.m) || (s != T.s);
}

using std::map, std::vector;
using std::cout, std::endl;
namespace Digits {

        map<char, vector<string>> digits = {
                {'0', { "#####", "#   #", "#   #", "#   #", "#####" } },
                {'1', { "#", " ##", "#", "#", " ### " } },
                {'2', { "#####", "    #", "#####", "#    ", "#####" } },
                {'3', { "#####", "    #", "#####", "    #", "#####" } },
                {'4', { "#   #", "#   #", "#####", "    #", "    #" } },
                {'5', { "#####", "#    ", "#####", "    #", "#####" } },
                {'6', { "#####", "#    ", "#####", "#   #", "#####" } },
                {'7', { "#####", "    #", "    #", "    #", "    #" } },
                {'8', { "#####", "#   #", "#####", "#   #", "#####" } },
                {'9', { "#####", "#   #", "#####", "    #", "#####" } },
                {':', { "   ", " []", "   ", " []", "   " } },
        };

        void display(Time T) {
                for (int i = 0; i < 5; i++) {
                        for (const char& c : T.clock) {
                                cout << digits << "   ";
                        }
                        cout << endl;
                }
        }
}

void countDown(Time end) {
        Time start(0, 0, 0);

        using namespace Digits;
        while (start != end) {
                system("cls");
                display(start);
                std::this_thread::sleep_for(std::chrono::milliseconds(1000));
                start++;
        }
        system("cls");
        display(start);
}

int main(void) {
        Time T(0, 1, 13); // 计时
        countDown(T);
        return 0;
}

嘉岳呀 发表于 2022-4-24 18:20:58

牛!

东方天晨 发表于 2022-4-25 18:37:49

666

豆嘉木 发表于 2022-5-24 17:15:41

这是面向对象与面向过程相结合的吗{:10_245:}

AlbertLiu66 发表于 2023-9-29 11:12:00

牛!有Python的代码吗
页: [1]
查看完整版本: 简单计时器