Edge Rewrite
Jump to content

Talk:Declaration (computer programming)

Page contents not supported in other languages.
Add topic
From Wikipedia, the free encyclopedia
Latest comment: 20 days ago by QuantumNinus in topic Initialization

Code examples

[edit]

The code examples are interchanged, aren't they? -- 195.14.207.180 11:05, 18 August 2006 (UTC)Reply

Yes. I'll change them. Hopefully my change won't be regarded as vandalism (like the last attempt to change it was, back on 11 May). -- Rhebus 11:52, 18 August 2006 (UTC)Reply

Initialization

[edit]

Initialization = definition? --Abdull (talk) 19:53, 21 December 2007 (UTC)Reply

No. For variables, reserving memory = definition, initialization = initialization. The article is misleading. 81.131.65.15 (talk) 12:18, 5 April 2010 (UTC)Reply

All initialization is a definition, but just the first definition is initialization. QuantumNinus (talk) 19:05, 6 July 2026 (UTC)Reply

Declarations don't necessarily reserve memory, and if they do, they are definitions

[edit]

"For variables, definitions assign values to an area of memory that was reserved during the declaration phase." That's not correct. From The C Programming Language, Appendix 8:

Declarations specify the interpretation given to each identifier; they do not necessarily reserve storage associated with the identifier. Declarations that reserve storage are called definitions.

Definitions in C (such as int x = 7; at the top of a function) are also declarations, but a (pure) declaration is not a definition and reserves no memory. "extern char example1;" won't reserve any memory. 81.131.65.15 (talk) 12:13, 5 April 2010 (UTC)Reply

Contradiction pertaining to definition of "Definition"

[edit]

The definition of "definition" given is "definitions (declarations which provide the actual implementation in the case of functions, and initialization in the case of variables)", which is contradicted by the line below: Here are some examples of definitions, again in C: char example1; —Preceding unsigned comment added by 69.191.241.48 (talk) 13:49, 16 March 2011 (UTC)Reply

I concur with the opinion above: the definition of "definition" is incorrect. See eg. "C++ FAQ Lite", Section [10.13] "Can I add = initializer; to the declaration of a class-scope static const data member?" 71.146.78.75 (talk) 15:20, 25 August 2011 (UTC)Reply

Merge suggestion

[edit]

See Talk:Initialization_(programming)#Merge suggestion. A.A.Graff (talk) 04:03, 21 May 2010 (UTC)Reply

Distinguish between the definition of a function and a declaration of a variable.

[edit]

Make at least 2 sections. Better would be to have 2 articles.--92.193.45.68 (talk) 20:30, 22 October 2012 (UTC)Reply