Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      std::perror

      From cppreference.com
      <cpp‎ |io‎ |c
       
       
       
       
      Defined in header<cstdio>
      void perror(constchar*s);

      Prints a textual description of the error code currently stored in the system variableerrno tostderr.

      The description is formed by concatenating the following components:

      • the contents of the null-terminated byte string pointed to bys, followed by": " (unlesss is a null pointer or the character pointed to bys is the null character).
      • implementation-defined error message string describing the error code stored inerrno, followed by'\n'. The error message string is identical to the result ofstd::strerror(errno).

      Contents

      [edit]Parameters

      s - pointer to a null-terminated string with explanatory message

      [edit]Return value

      (none)

      [edit]Example

      Run this code
      #include <cerrno>#include <cmath>#include <cstdio> int main(){double not_a_number=std::log(-1.0);if(errno==EDOM)        std::perror("log(-1) failed");std::printf("%f\n", not_a_number);}

      Possible output:

      log(-1) failed: Numerical argument out of domainnan

      [edit]See also

      macro which expands to POSIX-compatible thread-local error number variable
      (macro variable)[edit]
      returns a text version of a given error code
      (function)[edit]
      C documentation forperror
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/io/c/perror&oldid=158708"

      [8]ページ先頭

      ©2009-2025 Movatter.jp