preguntar acerca de private-inheritance
2
réponses
C++ Exceptions et héritage de std:: exception
compte tenu de ce code d'échantillon:
#include <iostream>
#include <stdexcept>
class my_exception_t : std::exception
{
public:
explicit my_exception_t()
{ }
virtual const char* what() const throw()
{ return "Hello, worl …
demandé sur
1970-01-01 00:33:30