Se você programa em C/C++

Falae!

Estava estudando o Core Java e numa de suas “Notas C++” o Cay Horstman fala de member functions e de “código de saída” de um programa etc.

O que é isso? :roll:

Um forte abraço a todos,

Olá,

o primeiro link da busca
http://www.google.com.br/search?hl=pt-BR&q=member+functions+c%2B%2B&btnG=Pesquisa+Google&meta=

[quote]Member functions are operators and functions that are declared as members of a class. Member functions do not include operators and functions declared with the friend specifier. These are called friends of a class. You can declare a member function as static; this is called a static member function. A member function that is not declared as static is called a nonstatic member function.

The definition of a member function is within the scope of its enclosing class. The body of a member function is analyzed after the class declaration so that members of that class can be used in the member function body, even if the member function definition appears before the declaration of that member in the class member list. When the function add() is called in the following example, the data variables a, b, and c can be used in the body of add().[/quote]

[]´s
Rodrigo