xtd 0.2.0
Loading...
Searching...
No Matches
static.cpp

Shows how to use xtd::static class.

#include <xtd/console>
#include <xtd/static>
using namespace xtd;
namespace static_example {
class program static_ {
public:
static ustring to_string() {return "program";}
};
}
auto main()->int {
// uncomment next line cause build error with call implicitly-deleted default constructor.
//auto program = static_example::program {};
console::write_line(static_example::program::to_string());
}
// This code produces the following output:
//
// program
Represents text as a sequence of UTF-8 code units.
Definition ustring.h:47
#define static_
This keyword is use to represent a static object. A static object can't be instantiated (constructors...
Definition static.h:37
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10