任務一: 源代碼: button.hpp 1 #pragma once 2 3 #include iostream 4 #include string 5 6 class Button { 7 public: 8 Button(const std::string label_); 9 const std::strin
實驗1 1.源代碼 #pragma once #include iostream #include string class Button { public: Button(const std::string label_); const std::string get_label() const; void click();