Home > Backend Development > C++ > body text

Can C 11 Achieve C#-Like Properties with Unnamed Classes and Lambdas?

Susan Sarandon
Release: 2024-10-28 03:08:02
Original
804 people have browsed it

 Can C  11 Achieve C#-Like Properties with Unnamed Classes and Lambdas?

C 11: Properties Like C#?

C# syntax allows for concise field getters and setters. C 11 introduces named classes and lambdas, offering a similar solution.

Implementing C# Properties in C 11

To emulate C# properties in C 11, you can employ unnamed classes and member access functions. Consider the following implementation:

<code class="cpp">struct Foo {
    struct {
        int value;
        auto &operator=(const int &i) -> decltype(auto) { return value = i; }
        auto operator()() const -> decltype(auto) { return value; }
    } alpha;

    struct {
        float value;
        auto &operator=(const float &f) -> decltype(auto) { return value = f; }
        auto operator()() const -> decltype(auto) { return value; }
    } bravo;
};</code>
Copy after login

Usage Example

<code class="cpp">Foo foo;
foo.alpha = 10;
cout << foo.alpha() << endl;</code>
Copy after login

This approach provides a C#-like syntax for getting and setting properties with auto-generated names.

The above is the detailed content of Can C 11 Achieve C#-Like Properties with Unnamed Classes and Lambdas?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!