digitalmars.D - D Language Gotchas
- Sumit Adhikari (8/8) Nov 04 2013 Dear All,
- deadalnix (5/12) Nov 04 2013 We have probably enough to create an OuOfMemooryError in your
- qznc (11/17) Nov 04 2013 There are various gotchas due to bugs in the frontend, but they
- Kagamin (3/3) Nov 05 2013 I think, all languages have more gotchas than features, because
- Meta (8/16) Nov 05 2013 One gotcha relates to enums. Writing `enum a = [0, 1, 2]` is a
- Jacob Carlborg (5/11) Nov 05 2013 Isn't the problem rather that [0, 1, 2] allocates in the first place,
- Sumit Adhikari (10/24) Nov 05 2013 One big gotcha of this forum is that when I reply I will have to
- Kagamin (5/9) Nov 05 2013 You can search for bearophile's enhancement requests in bugzilla.
- bearophile (8/10) Nov 05 2013 Some better examples:
- Kagamin (3/7) Nov 06 2013 Those are not implemented, so no difference with C yet except for
- Gary Willoughby (3/13) Nov 06 2013 All of these once implemented would add great value to the
- Meta (4/18) Nov 05 2013 It's a combination of [0, 1, 2] allocating and enum a = [0, 1, 2]
- Jonathan M Davis (9/19) Nov 05 2013 In most cases, array literals need to allocate, regardless of whether th...
- qznc (4/34) Nov 05 2013 Can you work around that? Maybe something like:
- Jonathan M Davis (14/52) Nov 05 2013 What's to work around? It's very much on purpose that enums work that wa...
- safety0ff (12/12) Nov 05 2013 One other gotcha that I've run into is trying to use foreach on a
- Meta (3/15) Nov 05 2013 Also this:
Dear All, I searched internet also I searched this forum for D Language gotchas. In this forum, I found a thread which is from 2005 and I do not know latest updates on that. My question is that - "Are there known programming gotchas of D language ?" If will be grateful if I get some pointers. Regards, Sumit
Nov 04 2013
On Tuesday, 5 November 2013 at 02:59:55 UTC, Sumit Adhikari wrote:Dear All, I searched internet also I searched this forum for D Language gotchas. In this forum, I found a thread which is from 2005 and I do not know latest updates on that. My question is that - "Are there known programming gotchas of D language ?"We have probably enough to create an OuOfMemooryError in your browser.If will be grateful if I get some pointers.GC.alloc will give you plenty :D Seriously, you gotta limit somehow the scope of that question.
Nov 04 2013
On Tuesday, 5 November 2013 at 02:59:55 UTC, Sumit Adhikari wrote:I searched internet also I searched this forum for D Language gotchas. In this forum, I found a thread which is from 2005 and I do not know latest updates on that. My question is that - "Are there known programming gotchas of D language ?" If will be grateful if I get some pointers.There are various gotchas due to bugs in the frontend, but they get fixed (slowly). You can browse the bug tracker. Some "gotchas" are just assumptions people have coming from other programming languages (slices behavior, floating point, etc). My pragmatic tutorial [0] tries to guide you around those. Some aspects of D are bad in hindsight, but will not be fixed in the near future due to backwards compatability. For example, safe and pure should probably have been the defaults instead of extra annotations. [0] http://qznc.github.io/d-tut/
Nov 04 2013
I think, all languages have more gotchas than features, because features are designed for certain scenarios, so they are likely to not play as well in other scenarios, probably more numerous.
Nov 05 2013
On Tuesday, 5 November 2013 at 02:59:55 UTC, Sumit Adhikari wrote:Dear All, I searched internet also I searched this forum for D Language gotchas. In this forum, I found a thread which is from 2005 and I do not know latest updates on that. My question is that - "Are there known programming gotchas of D language ?" If will be grateful if I get some pointers. Regards, SumitOne gotcha relates to enums. Writing `enum a = [0, 1, 2]` is a really bad idea, because everywhere you use a, it constructs a new array at runtime. The [0, 1, 2] is "pasted in", and you'll have a bunch of allocations you didn't expect. This doesn't just happen with arrays, but that's the most common case. What *is* okay is using string enums, as strings are a bit special due to being immutable.
Nov 05 2013
On 2013-11-05 12:16, Meta wrote:One gotcha relates to enums. Writing `enum a = [0, 1, 2]` is a really bad idea, because everywhere you use a, it constructs a new array at runtime. The [0, 1, 2] is "pasted in", and you'll have a bunch of allocations you didn't expect. This doesn't just happen with arrays, but that's the most common case. What *is* okay is using string enums, as strings are a bit special due to being immutable.Isn't the problem rather that [0, 1, 2] allocates in the first place, regardless if an enum is used or not. -- /Jacob Carlborg
Nov 05 2013
One big gotcha of this forum is that when I reply I will have to reply only one person and hence I cannot thank everybody using one mail! Indeed I am happy that I have some pointers and I thank everybody for participation. My need was to create a qualitative analysis document for the case of one out of three languages - D, C++ and something-else. I will investigate more and come back to you people if I am stuck. Regards, Sumit On Tuesday, 5 November 2013 at 12:27:55 UTC, Jacob Carlborg wrote:On 2013-11-05 12:16, Meta wrote:One gotcha relates to enums. Writing `enum a = [0, 1, 2]` is a really bad idea, because everywhere you use a, it constructs a new array at runtime. The [0, 1, 2] is "pasted in", and you'll have a bunch of allocations you didn't expect. This doesn't just happen with arrays, but that's the most common case. What *is* okay is using string enums, as strings are a bit special due to being immutable.Isn't the problem rather that [0, 1, 2] allocates in the first place, regardless if an enum is used or not.
Nov 05 2013
On Tuesday, 5 November 2013 at 13:07:26 UTC, Sumit Adhikari wrote:Indeed I am happy that I have some pointers and I thank everybody for participation. My need was to create a qualitative analysis document for the case of one out of three languages - D, C++ and something-else.You can search for bearophile's enhancement requests in bugzilla. They are often aimed at improving D design with respect to C legacy, which D has a little. One example is http://d.puremagic.com/issues/show_bug.cgi?id=4077
Nov 05 2013
Kagamin:One example is http://d.puremagic.com/issues/show_bug.cgi?id=4077Some better examples: http://d.puremagic.com/issues/show_bug.cgi?id=5409 http://d.puremagic.com/issues/show_bug.cgi?id=3827 http://d.puremagic.com/issues/show_bug.cgi?id=8757 ... Bye, bearophile
Nov 05 2013
On Tuesday, 5 November 2013 at 16:45:53 UTC, bearophile wrote:Some better examples: http://d.puremagic.com/issues/show_bug.cgi?id=5409 http://d.puremagic.com/issues/show_bug.cgi?id=3827 http://d.puremagic.com/issues/show_bug.cgi?id=8757Those are not implemented, so no difference with C yet except for C compilers warnings.
Nov 06 2013
On Tuesday, 5 November 2013 at 16:45:53 UTC, bearophile wrote:Kagamin:All of these once implemented would add great value to the compiler.One example is http://d.puremagic.com/issues/show_bug.cgi?id=4077Some better examples: http://d.puremagic.com/issues/show_bug.cgi?id=5409 http://d.puremagic.com/issues/show_bug.cgi?id=3827 http://d.puremagic.com/issues/show_bug.cgi?id=8757 ... Bye, bearophile
Nov 06 2013
On Tuesday, 5 November 2013 at 12:27:55 UTC, Jacob Carlborg wrote:On 2013-11-05 12:16, Meta wrote:It's a combination of [0, 1, 2] allocating and enum a = [0, 1, 2] not doing what you think it does (defining a variable instead of just copying and pasting).One gotcha relates to enums. Writing `enum a = [0, 1, 2]` is a really bad idea, because everywhere you use a, it constructs a new array at runtime. The [0, 1, 2] is "pasted in", and you'll have a bunch of allocations you didn't expect. This doesn't just happen with arrays, but that's the most common case. What *is* okay is using string enums, as strings are a bit special due to being immutable.Isn't the problem rather that [0, 1, 2] allocates in the first place, regardless if an enum is used or not.
Nov 05 2013
On Tuesday, November 05, 2013 13:27:54 Jacob Carlborg wrote:On 2013-11-05 12:16, Meta wrote:In most cases, array literals need to allocate, regardless of whether they're an enum or not. The cases where they don't need to allocate (e.g. when initializing a static array) shouldn't allocate, but an array literal by itself is a dynamic array, and pretty much has to allocate in most cases in order to be safe. Having an enum which is an array literal rather than making it an immutable constant then results in allocations that you might not want, but that's not really the literal's fault. - Jonathan M DavisOne gotcha relates to enums. Writing `enum a = [0, 1, 2]` is a really bad idea, because everywhere you use a, it constructs a new array at runtime. The [0, 1, 2] is "pasted in", and you'll have a bunch of allocations you didn't expect. This doesn't just happen with arrays, but that's the most common case. What *is* okay is using string enums, as strings are a bit special due to being immutable.Isn't the problem rather that [0, 1, 2] allocates in the first place, regardless if an enum is used or not.
Nov 05 2013
On Wednesday, 6 November 2013 at 04:57:57 UTC, Jonathan M Davis wrote:On Tuesday, November 05, 2013 13:27:54 Jacob Carlborg wrote:Can you work around that? Maybe something like: enum a = immutable([0, 1, 2]);On 2013-11-05 12:16, Meta wrote:In most cases, array literals need to allocate, regardless of whether they're an enum or not. The cases where they don't need to allocate (e.g. when initializing a static array) shouldn't allocate, but an array literal by itself is a dynamic array, and pretty much has to allocate in most cases in order to be safe. Having an enum which is an array literal rather than making it an immutable constant then results in allocations that you might not want, but that's not really the literal's fault.One gotcha relates to enums. Writing `enum a = [0, 1, 2]` is a really bad idea, because everywhere you use a, it constructs a new array at runtime. The [0, 1, 2] is "pasted in", and you'll have a bunch of allocations you didn't expect. This doesn't just happen with arrays, but that's the most common case. What *is* okay is using string enums, as strings are a bit special due to being immutable.Isn't the problem rather that [0, 1, 2] allocates in the first place, regardless if an enum is used or not.
Nov 05 2013
On Wednesday, November 06, 2013 07:26:57 qznc wrote:On Wednesday, 6 November 2013 at 04:57:57 UTC, Jonathan M Davis wrote:What's to work around? It's very much on purpose that enums work that way. If you don't want that behavior, then simply create a variable instead. e.g. immutable a = [0, 1, 2]; The fact that enums are treated as manifest constants isn't a problem so long as you understand that that's what they're supposed to do. If you don't want a manifest constant, then don't use an enum. The only thing that enum a = [0, 1, 2]; gains you over immutable a = [0, 1, 2]; is making it a manifest constant instead of a variable. Which you choose depends on what behavior you want. Neither is wrong, and which is desirable depends entirely on what you're doing. - Jonathan M DavisOn Tuesday, November 05, 2013 13:27:54 Jacob Carlborg wrote:Can you work around that? Maybe something like: enum a = immutable([0, 1, 2]);On 2013-11-05 12:16, Meta wrote:In most cases, array literals need to allocate, regardless of whether they're an enum or not. The cases where they don't need to allocate (e.g. when initializing a static array) shouldn't allocate, but an array literal by itself is a dynamic array, and pretty much has to allocate in most cases in order to be safe. Having an enum which is an array literal rather than making it an immutable constant then results in allocations that you might not want, but that's not really the literal's fault.One gotcha relates to enums. Writing `enum a = [0, 1, 2]` is a really bad idea, because everywhere you use a, it constructs a new array at runtime. The [0, 1, 2] is "pasted in", and you'll have a bunch of allocations you didn't expect. This doesn't just happen with arrays, but that's the most common case. What *is* okay is using string enums, as strings are a bit special due to being immutable.Isn't the problem rather that [0, 1, 2] allocates in the first place, regardless if an enum is used or not.
Nov 05 2013
One other gotcha that I've run into is trying to use foreach on a range of tuples with an iteration index. It does not do what you might expect, try: import std.range, std.stdio; void main() { auto a = repeat(1,5); auto b = repeat(2,5); foreach(i, ab; a.zip(b)) writeln(i, " ", ab); } request.
Nov 05 2013
On Tuesday, 5 November 2013 at 17:14:23 UTC, safety0ff wrote:One other gotcha that I've run into is trying to use foreach on a range of tuples with an iteration index. It does not do what you might expect, try: import std.range, std.stdio; void main() { auto a = repeat(1,5); auto b = repeat(2,5); foreach(i, ab; a.zip(b)) writeln(i, " ", ab); } request.Also this: http://d.puremagic.com/issues/show_bug.cgi?id=10765
Nov 05 2013