xtd 0.2.0
Loading...
Searching...
No Matches

◆ static_

#define static_

#include <xtd.core/include/xtd/static.h>

This keyword is use to represent a static object. A static object can't be instantiated (constructors are deleted).

Namespace
xtd
Library
xtd.core
Examples
class foo static_ {
public:
static std::string to_string() {return "foo";}
};
#define static_
This keyword is use to represent a static object. A static object can't be instantiated (constructors...
Definition static.h:37
Examples
console_firework.cpp, environment_cancel_signal.cpp, environment_program_exit.cpp, and static.cpp.