C'è un altro significato da prototipare?

3

Sto leggendo Pro C # . Dice

do be aware that the value 0 is automatically returned, even if you construct a Main() method prototyped to return void.

Che cosa significa prototipo in questo contesto?

L'unica definizione correlata a C # di un prototipo di cui sono a conoscenza ha a che fare con un modello o un programma di test sballati insieme senza l'intenzione di andare in produzione.

    
posta P.Brian.Mackey 14.12.2011 - 16:25
fonte

1 risposta

6

In questo contesto, credo che la frase sia usata come sinonimo di una firma del metodo.

Puoi chiamare qualsiasi metodo di firma il prototipo della chiamata effettiva.

Un po 'di ritorno ai file c e header.

Vedi wikipedia - Prototipo di funzione :

A function prototype in C, Perl or C++ is a declaration of a function that omits the function body but does specify the function's return type, name, arity and argument types. While a function definition specifies what a function does, a function prototype can be thought of as specifying its interface.

    
risposta data 14.12.2011 - 16:34
fonte

Leggi altre domande sui tag