Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Cómo Crear una Función en C++? | Introduction
course content

Contenido del Curso

C++ Functions

Cómo Crear una Función en C++?Cómo Crear una Función en C++?

Veamos la función que creamos en el capítulo anterior:

cpp

main.cpp

  • Function signature: Provides essential information about a function's interface, including its name, return type, and parameter list.
    • Return type: Specifies the type of data the function will return. In this example, it's int, indicating an integer will be returned.
    • Function name: Unique identifier for the function, used to call it from other parts of the program. Our function is named calculateFactorial.
  • Parameter list: Defines the input values the function expects. This function expects a single integer parameter named n.
  • Function Body: Contains the code that performs the desired operations, enclosed in curly braces {}. In this example, the function calculates the factorial of n using a for loop and stores the result in the factorial variable.
  • Return Statement: Specifies the value the function will return to the caller. In this case, it returns the calculated factorial value using the return keyword.

Por lo tanto, arriba, describimos la estructura de una función en C++: cualquier función consta de una firma, un cuerpo de función y un valor de retorno.

Nota

Una función puede no tener una declaración de retorno; esto se discutirá en la tercera sección.

¿Qué es una firma de función en C++?

Selecciona la respuesta correcta

¿Todo estuvo claro?

Sección 1. Capítulo 2
course content

Contenido del Curso

C++ Functions

Cómo Crear una Función en C++?Cómo Crear una Función en C++?

Veamos la función que creamos en el capítulo anterior:

cpp

main.cpp

  • Function signature: Provides essential information about a function's interface, including its name, return type, and parameter list.
    • Return type: Specifies the type of data the function will return. In this example, it's int, indicating an integer will be returned.
    • Function name: Unique identifier for the function, used to call it from other parts of the program. Our function is named calculateFactorial.
  • Parameter list: Defines the input values the function expects. This function expects a single integer parameter named n.
  • Function Body: Contains the code that performs the desired operations, enclosed in curly braces {}. In this example, the function calculates the factorial of n using a for loop and stores the result in the factorial variable.
  • Return Statement: Specifies the value the function will return to the caller. In this case, it returns the calculated factorial value using the return keyword.

Por lo tanto, arriba, describimos la estructura de una función en C++: cualquier función consta de una firma, un cuerpo de función y un valor de retorno.

Nota

Una función puede no tener una declaración de retorno; esto se discutirá en la tercera sección.

¿Qué es una firma de función en C++?

Selecciona la respuesta correcta

¿Todo estuvo claro?

Sección 1. Capítulo 2
some-alt