As title says, the meaning of both eludes me.
|
|
A declaration introduces an identifier and describes its type, be it a type, object, or function. A declaration is what the compiler needs to accept references to that identifier. These are declarations:
A definition actually instantiates/implements this identifier. It's what the linker needs in order to link references to those entities. These are definitions corresponding to the above declarations:
A definition can be used in the place of a declaration. An identifier can be declared as often as you want. Thus, the following is legal in C and C++:
However, it must be defined exactly once. If you forget to define something that's been declared and referenced somewhere, then the linker doesn't know what to link references to and complains about a missing symbols. If you define something more than once, then the linker doesn't know which of the definitions to link references to and complains about duplicated symbols. Since the debate what is a class declaration vs. a class definition in C++ keeps coming up (in answers and comments to other questions) , I'll paste a quote from the C++ standard here.
3.1/3 then gives a few examples. Amongst them:
struct S { int a; int b; }; // defines S, S::a, and S::b
struct S; // declares S
To sum it up: The C++ standard considers Thanks to litb (Johannes Schaub) who dug out the actual chapter and verse in one of his answers. |
|||||||||||||||||||||
|
|
From the C++ standard section 3.1:
The next paragraph states (emphasis mine) that a declaration is a definition unless... ... it declares a function without specifying the function’s body
... it declares a static member within a class definition
... it declares a class name
... it contains the
... or is a
Now for the big reason why it's important to understand the difference between a declaration and definition: the One Defintion Rule. From section 3.2.1 of the C++ standard:
|
|||||||
|
|
There are interesting edge cases in C++ (some of them in C too). Consider
That can be a definition or a declaration, depending on what type
In C++, when using templates, there is another edge case.
The last declaration was not a definition. It's the declaration of an explicit specialization of the static member of
|
|||||
|
|
Declaration
Definition
|
|||||||||||||||||||||
|
|
From the C99 standard, 6.7(5): A declaration specifies the interpretation and attributes of a set of identifiers. A definition of an identifier is a declaration for that identifier that:
From the C++ standard, 3.1(2): A declaration is a definition unless it declares a function without specifying the function's body, it contains the extern specifier or a linkage-specification and neither an initializer nor a function-body, it declares a static data member in a class declaration, it is a class name declaration, or it is a typedef declaration, a using-declaration, or a using-directive. Then there are some examples. So interestingly (or not, but I'm slightly surprised by it), |
|||||||||||||
|
|
Declaration "Somewhere, there exists a foo". Definition: "...and here it is!" |
|||
|
|
From wiki.answers.com: The term declaration means (in C) that you are telling the compiler about type, size and in case of function declaration, type and size of its parameters of any variable, or user defined type or function in your program. No space is reserved in memory for any variable in case of declaration. However compiler knows how much space to reserve in case a variable of this type is created. for example, following are all declarations:
Definition on the other hand means that in additions to all the things that declaration does, space is also reserved in memory. You can say "DEFINITION = DECLARATION + SPACE RESERVATION" following are examples of definition:
see Answers. |
|||||||||||||||||||||
|
|
definition means actual function written & declaration means simple declare function for e.g.
and
this is definition of function myfunction |
||||
|
|
|
Couldnt you state in the most general terms possible, that a declaration is an identifier in which no storage is allocated and a definition actually allocates storage from a declared identifier? One interesting thought - a template cannot allocate storage until the class or function is linked with the type information. So is the template identifier a declaration or definition? It should be a declaration since no storage is allocated, and you are simply 'prototyping' the template class or function. |
|||||||
|
|
Difference between declaring and defining with functions: The prototype statement for a function declares it, i.e. tells the compiler about the function - its name, return type, and number and type of its parameters. The function header, followed by the body of the function, defines the function - giving the details of the steps to perform the function operation. Ex. Code:
With Respect to Variables: For automatic and register variables, there is no difference between definition and declaration. The process of declaring an automatic or a register variable defines the variable name and allocates appropriate memory. However, for external variables: Because memory for a variable must be allocated only once, to ensure that access to the variable always refers to the same cell. all variables must be defined once and only once. If an external variable is to be used in a file other than the one in which it is defined, a mechanism is needed to "connect" such a use with the uniquely defined external variable cell allocated for it. This process of connecting the references of the same external variable in different files, is called resolving the references. It may be defined and declared with a declaration statement outside any function, with no storage class specifier. Such a declaration allocates memory for the variable. A declaration statement may also be used to simply declare a variable name with the extern storage class specifier at the beginning of the declaration. Such a declaration specifies that the variable is defined elsewhere, i.e. memory for this variable is allocated in another file. Thus, access to an external variable in a file other than the one in which it is defined is possible if it is declared with the keyword extern; no new memory is allocated. Such a declaration tells the compiler that the variable is defined elsewhere, and the code is compiled with the external variable left unresolved. The reference to the external variable is resolved during the linking process. Ex. Code
These declarations tell the compiler that the variables stack[] and stkptr are defined elsewhere, usually in some other file. If the keyword extern were omitted, the variables would be considered to be new ones and memory would be allocated for them. Remember, access to the same external variable defined in another file is possible only if the keyword extern is used in the declaration. |
|||
|
|
|
Declaration means give name and type to a variable (in case of variable declaration) eg:
or give name,return type and parameter(s) type to a function without body(in case of function declaration) eg:
whereas definition means assign value to a variable (in case of variable definition). eg:
or provide/add body(functionality) to a function is called function definition. eg:
many time declaration and definition can be done together as:
and
In above cases we define and declare variable i and function max() |
|||||||||||||
|
|
A declaration introduces a name into the program; a definition provides a unique description of an entity (e.g. type, instance, and function). Declarations can be repeated in a given scope, it introduces a name in a given scope. There must be exactly one definition of every object, function or class used in a C++ program. A declaration is a definition unless:
A definition is a declaration unless:
|
|||||||||
|
|
definition assigns memory while declaration is for referencing that variable. |
|||||||
|
|
Rule of thumb:
|
|||||
|
|
Declaration : declaring what it going to happen (planning before action) mean declaration tells the compiler about the data type of variable, name of the variable, and necessary required size of memory. Definition: Actual specification/value or initialization with value/values. |
|||
|
|
the above statement means that "an identifier named 'var' has been defined here.
this statement means that "an identifier named 'var' has been declared here which has its definition in foo.h foo.h :
In case of functions declaration means prototype and definition means body of the function we can use definitions in place of declarations. for example :
instead of
similarly we can write
instead of
|
|||
|
|
definition defines the memory area allocates the memory for the variable and the declaration variable of the type and size to be considered.
The function declaration is
The function prototype is called as the function declaration What the function performed the operation and the variable value how to handled the method is called definition
|
|||||
|
protected by Bill the Lizard♦ Sep 2 '11 at 19:07
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

