Raised This Month: $51 Target: $400
 12% 

Enum Structs Available This Holiday Season


  
 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
AdRiAnIlloO
Member
Join Date: Jul 2015
Location: Spain
Old 06-25-2020 , 05:14   Re: Enum Structs Available This Holiday Season
Reply With Quote #36

Quote:
Originally Posted by Deather View Post
There is also a problem with using the same struct type as a method argument type:
Code:
enum 
struct STest
{
    int a;

    void Add(STest x)
    {
       a += x.a;
    }
}
STest test;
Right, it seems you can't use same enum struct inside one's definition. Though you also need to always prefix self members with this. (so this.a in your example), otherwise it's an error.

Also, I wanted to suggest. I think enum structs should support constructors, I guess it would be easy since they allow for normal functions already, and it would be the most natural next-step for me. In relation to this, the fact that methodmaps have constructors already wouldn't be a reason for not making same on enum structs - methodmaps can't contain member variables.

Once this is done, enum structs will be much more valuable.

Last edited by AdRiAnIlloO; 07-01-2020 at 06:41.
AdRiAnIlloO is offline
 



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 07:31.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode