Declaring functions – cppreference.com
Aus cppreference.com
<metanoindex/>
Eine Funktion Deklaration führt den Namen der Funktion und ihren Typ. Es kann in jedem Bereich erscheinen, und wird häufig in Header-Dateien platziert werden .
Original:
A function declaration introduces the function name and its type. It may appear in any scope, and is commonly placed in header files.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
ret name ( params ) ;
|
(1) | ||||||||
ret name ( params ) cv ref except attr ;
|
(2) | ||||||||
auto name ( params ) cv ref except attr -> ret ;
|
(3) | (seit C++11) | |||||||
Eine Funktionsdefinition versorgt den Körper einer Funktion. Es darf nur in Namespace oder Gültigkeitsbereich der Klasse erscheinen .
Original:
A function definition provides the body of a function. It may only appear in namespace or class scope.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
decl name ( params ) { body }
|
(4) | ||||||||
attr decl name ( params ) cv ref except attr virt try init-list { body } catch
|
(5) | ||||||||
attr decl name ( params ) cv ref except attr -> ret virt try init-list { body } catch
|
(6) | (seit C++11) | |||||||
attr decl name ( params ) cv ref except attr virt = 0 ;
|
(7) | ||||||||
attr decl name ( params ) cv ref except attr virt = default ;
|
(8) | (seit C++11) | |||||||
attr decl name ( params ) cv ref except attr virt = delete ;
|
(9) | (seit C++11) | |||||||
Erklärung
1)
Typische Funktion Erklärung
Original:
Typical function declaration
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
2)
Umfassende Funktion Erklärung
Original:
Comprehensive function declaration
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
3)
Umfassende Funktion Erklärung mit nachgestellten Rückgabetyp
Original:
Comprehensive function declaration with trailing return type
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
4)
Typische nicht-Member-Funktion Definition
Original:
Typical non-member function definition
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
5)
Umfassende Definition der Funktion
Original:
Comprehensive function definition
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
6)
Umfassende Definition der Funktion mit nachgestellten Rückgabetyp
Original:
Comprehensive function definition with trailing return type
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
7)
Rein virtuelle Memberfunktion
Original:
Pure virtual member function
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
8)
Defaulted Member-Funktion
Original:
Defaulted member function
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
9)
Deleted Member-Funktion
Original:
Deleted member function
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
| attr(C++11) | - | Optional Sequenz von einer beliebigen Anzahl von Funktion Attribute wie Original: Optional sequence of any number of Funktion Attribute, such as The text has been machine-translated via Google Translate. |
| ret | - | die Art von der Funktion zurückgegeben, kann Original: the type returned by the function, may be The text has been machine-translated via Google Translate. |
| decl | - | Erklärung specifier Sequenz, die von keiner oder einer der folgenden Suchbegriffe besteht: static, extern, inline, Original: declaration specifier sequence, which consists of none or some of the following keywords: static, extern, inline, The text has been machine-translated via Google Translate. {{par | cv |{{tr| Optional |
| ref(C++11) | - | Optional Original: Optional The text has been machine-translated via Google Translate. |
| except | - | entweder Dynamik-exception-Spezifikation oder noexcept-Spezifikation Original: The text has been machine-translated via Google Translate. |
| virt(C++11) | - | Optional Original: Optional The text has been machine-translated via Google Translate. |
->ret(C++11)
|
- | Trailing Rückgabetyp, nur anwendbar, wenn ret ist Original: Trailing return type, only applicable if ret is The text has been machine-translated via Google Translate. |
| init-list | - | Constructor Initialisierungsliste nur in Konstruktoren verwendet Original: The text has been machine-translated via Google Translate. |
try
|
- | Optionale Funktion try-Block. Falls vorhanden, muss catch vorgesehen sein Original: Optional function try block. If present, catch must be provided The text has been machine-translated via Google Translate. |
| catch | - | Optionale Folge von catch-Blöcke ist nur anwendbar, der Original: Optional sequence of catch-Blöcke, only applicable of The text has been machine-translated via Google Translate. |
| body | - | Der Körper der Funktion, eine (möglicherweise leere) zusammengesetzten Anweisung Original: The body of the function, a (possibly empty) compound statement The text has been machine-translated via Google Translate. |
| params | - | Die Liste der Parameter Original: The text has been machine-translated via Google Translate. |
Beispiel 1: Nicht-Member-Funktionen
#include <iostream> #include <string> // declaration in namespace(file) scope // (the definition is provided later) int f1(); // simple function with a default argument, returning nothing void f0(const std::string& arg = "world") { std::cout << "Hello, " << arg << '\n'; } // function returning a pointer to f0 auto fp11() -> void(*)(const std::string&) { return f0; } // function returning a pointer to f0, pre-C++11 style void (*fp03())(const std::string&) { return f0; } int main() { f0(); fp11()("test"); fp03()("again"); int f2(std::string); // declaration in function scope std::cout << f2("bad12") << '\n'; } // simple non-member function returning int int f1() { return 42; } // function with an exception specification and a function try block int f2(std::string str) noexcept try { return std::stoi(str); } catch(const std::exception& e) { std::cerr << "stoi() failed!\n"; return 0; }
Output:
Hello, world Hello, test Hello, again stoi() failed! 0
Beispiel 2: Member-Funktionen
#include <iostream> #include <string> #include <utility> #include <exception> struct S { int data; // simple converting constructor (declaration) S(int val); // simple explicit constructor (declaration) explicit S(std::string str); // const member function (definition) virtual int getData() const { return data; } }; // definition of the constructor S::S(int val) : data(val) { std::cout << "ctor1 called, data = " << data << '\n'; } // this constructor has a catch clause S::S(std::string str) try : data(std::stoi(str)) { std::cout << "ctor2 called, data = " << data << '\n'; } catch(const std::exception&) { std::cout << "ctor2 failed, string was '" << str << "'\n"; throw; // ctor's catch clause should always rethrow } struct D : S { int data2; // constructor with a default argument D(int v1, int v2 = 11) : S(v1), data2(v2) {} // virtual member function int getData() const override { return data*data2; } // lvalue-only assignment operator D& operator=(D other) & { std::swap(other.data, data); std::swap(other.data2, data2); return *this; } }; int main() { D d1 = 1; S s2("2"); try { S s3("not a number"); } catch(const std::exception&) {} std::cout << s2.getData() << '\n'; D d2(3, 4); d2 = d1; // OK: assignment to lvalue // D(5) = d1; // ERROR: no suitable overload of operator= }
Output:
ctor1 called, data = 1 ctor2 called, data = 2 ctor2 failed, string was 'not a number' 2 ctor1 called, data = 3