Thread overview | ||||||
---|---|---|---|---|---|---|
|
April 13, 2004 Properties - A question | ||||
---|---|---|---|---|
| ||||
Below is the info on properties copied from http://www.digitalmars.com/d/property.html. Is the 'float.nan' comment correct? If so would some kind person put me straight. ta Every type and expression has properties that can be queried: int.sizeof // yields 2 float.nan // yields the floating point value (float).nan // yields the floating point nan value (3).sizeof // yields 4 (because 3 is an int) 2.sizeof // syntax error, since "2." is a floating point number int.init // default initializer for int's |
April 13, 2004 Re: Properties - A question | ||||
---|---|---|---|---|
| ||||
Posted in reply to Scott Egan | Scott Egan wrote: >Below is the info on properties copied from >http://www.digitalmars.com/d/property.html. > >Is the 'float.nan' comment correct? If so would some kind person put me >straight. > > Must be a typo. I mean as proof try this: printf("%f", float.nan); //nan printf("%f", (float).nan); //nan >ta > > >Every type and expression has properties that can be queried: > int.sizeof // yields 2 > float.nan // yields the floating point value > (float).nan // yields the floating point nan value > (3).sizeof // yields 4 (because 3 is an int) > 2.sizeof // syntax error, since "2." is a floating point number > int.init // default initializer for int's > > > > -- -Anderson: http://badmama.com.au/~anderson/ |
April 14, 2004 Re: Properties - A question | ||||
---|---|---|---|---|
| ||||
Posted in reply to J Anderson | J Anderson wrote:
[...]
> Must be a typo.
[...]
What are both of you talking about?
So long!
|
April 14, 2004 Re: Properties - A question | ||||
---|---|---|---|---|
| ||||
Posted in reply to Manfred Nowak | Manfred Nowak wrote: >J Anderson wrote: > >[...] > > >>Must be a typo. >> >> >[...] > >What are both of you talking about? > >So long! > > > The comment on float.nan is missing the word "nan". float.nan // yields the floating point value (float).nan // yields the floating point nan value -- -Anderson: http://badmama.com.au/~anderson/ |
Copyright © 1999-2021 by the D Language Foundation