16 Şubat 2018 Cuma

std::error_category Sınıfı

Giriş
Şu satırı dahil ederiz.
#include <system_error>
Bu sınıf C++11 ile geliyor. Bu sınıf ile boost arasındaki farkı anlatan bir yazı burada.

Açıklaması şöyle.
An error_code object consists of both an error value and a category.
Açıklaması şöyle.
Intended as a base class, an error_category is used to define sources of errors or categories of error codes and conditions.
Örnek 
Sınıf şöyledir.
class error_category {
  virtual const char* name() const noexcept = 0;
  virtual string message(int ev) const = 0;
};


Hiç yorum yok:

Yorum Gönder