Jump to page: 1 2
Thread overview
enum and const or immutable ‘variable’ whose value is known at compile time
Sep 16, 2020
Cecil Ward
Sep 16, 2020
Adam D. Ruppe
Sep 17, 2020
Cecil Ward
Sep 17, 2020
Mike Parker
Sep 17, 2020
claptrap
Sep 17, 2020
Mike Parker
Sep 18, 2020
jmh530
Sep 17, 2020
Mike Parker
Sep 17, 2020
Simen Kjærås
Sep 17, 2020
Mike Parker
Sep 17, 2020
Mike Parker
Sep 17, 2020
H. S. Teoh
Sep 17, 2020
claptrap
Sep 18, 2020
Mike Parker
Sep 18, 2020
claptrap
Oct 02, 2020
Cecil Ward
September 16, 2020
A really stupid question, I fear.

If I have some kind of declaration of some ‘variable’ whose value is strictly known at compile time and I do one of the following (rough syntax)

either
   enum foo = bar;
or
   const foo = bar;
or
   immutable foo = bar;

then is there any downside to just using enum all the time?

- I don’t need to take the address of foo, in fact want to discourage &foo, (as I said, given that I can do so)

Is there any upside either to using enum?

I’m a bit nervous about using immutable having had bad allergic reactions when passing immutable ‘variables’ to functions and so just tend to use const or enum.
September 16, 2020
On Wednesday, 16 September 2020 at 17:12:47 UTC, Cecil Ward wrote:
> then is there any downside to just using enum all the time?

For a non-string array, enum may give runtime allocations that static immutable won't.

Generally think of enum as being replaced with the literal representation and array literals actually make a new array.

This may or may not matter to you.
September 17, 2020
On Wednesday, 16 September 2020 at 17:19:13 UTC, Adam D. Ruppe wrote:
> On Wednesday, 16 September 2020 at 17:12:47 UTC, Cecil Ward wrote:
>> then is there any downside to just using enum all the time?
>
> For a non-string array, enum may give runtime allocations that static immutable won't.
>
> Generally think of enum as being replaced with the literal representation and array literals actually make a new array.
>
> This may or may not matter to you.

So can the result of declaring certain things with enum ever have an _address_ then? (According to legit D code that is, never mind the underlying implementation details, which may not be observable)

<rant>I actually really hate the way enum was bent out of shape and twisted from its original purpose so that finally we end up with a way of defining only one value, not the whole range of permissible values for a type as in the beginning.

I wish there were just a keyword ‘constant’ or something (yes, I know, you could just call that something ‘enum’, or ‘const’)</rant>
September 17, 2020
On Thursday, 17 September 2020 at 00:32:40 UTC, Cecil Ward
>
> So can the result of declaring certain things with enum ever have an _address_ then? (According to legit D code that is, never mind the underlying implementation details, which may not be observable)

No. Think of it as a named literal.

Given enum x = 10, then int num = x is the same as if you had typed int num = 10.

Thats’s why you have be careful with array enums if you care about allocations.

>
> <rant>I actually really hate the way enum was bent out of shape and twisted from its original purpose so that finally we end up with a way of defining only one value, not the whole range of permissible values for a type as in the beginning.
>
> I wish there were just a keyword ‘constant’ or something (yes, I know, you could just call that something ‘enum’, or ‘const’)</rant>

enum foo is essentially a shortcut for enum { foo }. It’s neither bent out of shape nor twisted. Consider that C++ added the new keyword constexpr for the same thing. Why pollute the namespace with a new keyword when you already have one that fits?
September 17, 2020
On Thursday, 17 September 2020 at 01:57:39 UTC, Mike Parker wrote:
> On Thursday, 17 September 2020 at 00:32:40 UTC, Cecil Ward
>>
> enum foo is essentially a shortcut for enum { foo }. It’s neither bent out of shape nor twisted. Consider that C++ added the new keyword constexpr for the same thing. Why pollute the namespace with a new keyword when you already have one that fits?

Seriously how it's implemented is irrelevant. When people use it (for that use case) they arn't thinking ohh right here I want an enum with one member. They are thinking I want a constant expression evaluated at compile time. IE, C++ got something right for once, D let the mechanic name the controls on the dashboard. It's an "implementers name" and it's retarded beyond belief. Seriously look up enumeration in a dictionary and explain how that can be twisted to mean "constant expression" or "evaluated at compile time".

Names are important, principle of least astonishment and all that, pretty much everyone coming to D is going be WTF in learning about that. And if you keep overloading existing keywords with more and more meanings the code gets harder and harder to grep at first glance.


September 17, 2020
On Thursday, 17 September 2020 at 09:44:20 UTC, claptrap wrote:

>
> Names are important, principle of least astonishment and all that, pretty much everyone coming to D is going be WTF in learning about that. And if you keep overloading existing keywords with more and more meanings the code gets harder and harder to grep at first glance.

I can attest that in the 17 years I've been hanging around here, the fact that enum is used to indicate a manifest constant has not been a serious source of WTF posts. So I think "pretty much everyone coming to D" have decided it's either perfectly fine or perfectly tolerable. It's the sort of thing that may not be obvious, but once you figure you absorb it and get down to coding. I know some people would prefer it were something else and some don't care. I'm squarely in the camp that thinks it makes perfect sense and it would be silly to create a new keyword for it.
September 17, 2020
On Thursday, 17 September 2020 at 09:44:20 UTC, claptrap wrote:

> Seriously how it's implemented is irrelevant.

And to be clear, my point wasn't about how it's implemented. My point was that:

enum { foo = 10; }

and

enum foo = 10;

Are effectively the same thing, whether it's implemented that way or not. So why on earth would a new keyword be necessary?

September 17, 2020
On Thursday, 17 September 2020 at 10:56:28 UTC, Mike Parker wrote:
> Are effectively the same thing, whether it's implemented that way or not. So why on earth would a new keyword be necessary?

C++ made enums stricter by "enum class".
September 17, 2020
On Thursday, 17 September 2020 at 10:56:28 UTC, Mike Parker wrote:
> On Thursday, 17 September 2020 at 09:44:20 UTC, claptrap wrote:
>
>> Seriously how it's implemented is irrelevant.
>
> And to be clear, my point wasn't about how it's implemented. My point was that:
>
> enum { foo = 10; }
>
> and
>
> enum foo = 10;
>
> Are effectively the same thing, whether it's implemented that way or not. So why on earth would a new keyword be necessary?

I could imagine some new users may think in

enum foo = someTemplate!();

someTemplate could evaluate to a list of values like a 'normal' enum. That's just conjecture, though. The one thing I dislike about enum like this is that we have another keyword that's able to handle manifest constants when tickled correctly, and which doesn't evoke the image of an enumerated list of values:

import std.meta : Alias;
alias foo = Alias!([1,2,3]);
alias bar = Alias!9;
alias baz = Alias!someFunc;

Some of the above may be doable without Alias!(), but not all. I don't know if you remember the discussions when bracketless enums were introduced back in 2007ish, but alias was the prime contender back then, and is slowly gaining the power that was requested at the time (the ability to alias values as above was added fairly recently).

To quote Bill Baxter from way back when
(https://forum.dlang.org/post/fjdc4c$2gft$1@digitalmars.com):

> > Why does:
> >     final int x = 3;
> > make any more intuitive sense than:
> >     enum int x = 3;
> > ?
> 
> There are these things called "words".  And they have "meanings"...
> enum: (short for "enumeration", the noun form of "enumerate")
>    "to specify one after another : list"
> final:
>    "not to be altered or undone <all sales are final>"

To be clear: I don't mind 'enum' being used this way, but if I were to do things over again, I would have used 'alias'.

--
  Simen
September 17, 2020
On Thursday, 17 September 2020 at 13:13:46 UTC, Simen Kjærås wrote:

>
> To quote Bill Baxter from way back when
> (https://forum.dlang.org/post/fjdc4c$2gft$1@digitalmars.com):
>
>> > Why does:
>> >     final int x = 3;
>> > make any more intuitive sense than:
>> >     enum int x = 3;
>> > ?
>> 
>> There are these things called "words".  And they have "meanings"...
>> enum: (short for "enumeration", the noun form of "enumerate")
>>    "to specify one after another : list"
>> final:
>>    "not to be altered or undone <all sales are final>"
>
> To be clear: I don't mind 'enum' being used this way, but if I were to do things over again, I would have used 'alias'.
>

Well, I was already using anonymous enums for compile-time constants anyway. For example, when translating C headers with lots of #defined constants (OpenGL is the poster child), I was doing this in Derelict:

enum {
   GL_THIS = ...,
   GL_THAT = ...,
}

So enum for this has always made sense to me. I would have been fine with final, but it would have been a leap for me because of my Java background; I would have kept seeing it as a synonym for const. And I would never have liked the Alias approach.

But no matter what solution would have been implemented (final, Alias, new keyword), I would have looked it up then, put my head down and gotten right back to writing code. It just happens the one that's most intuitive to me was picked :-)

« First   ‹ Prev
1 2