Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Attributes of the Class | Fundamentals of OOP
C++ OOP
course content

Contenido del Curso

C++ OOP

C++ OOP

1. Fundamentals of OOP
2. Constructors and Destructors
3. Encapsulation Overview
4. Inheritance Overview
5. Polymorphism Overview

Attributes of the Class

Class is like a container for two primary elements: attributes and methods. In this chapter we will learn about attributes and how to use them. For a student class common attributes will be name, gpa, email etc.

Understanding Attributes

Attributes, also often referred as properties or fields, they are the variables that are held within a class. Their job is to represent the state or qualities of objects created from the class.

Public attributes and methods in a class can be directly accessed using the dot operator (.) on an object of the class.

cpp

main

copy
12345678910
class Example { public: float attribute; }; int main() { Example obj; obj.attribute = 25; }

Note

Don't be bothered about public keyword. It will be explained later.

Tarea

  • Add two more attributes to a student class.
  • Create an object of the class.
  • Assigned values to the attributes of created instance.

Tarea

  • Add two more attributes to a student class.
  • Create an object of the class.
  • Assigned values to the attributes of created instance.

Cambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones

¿Todo estuvo claro?

Sección 1. Capítulo 4
toggle bottom row

Attributes of the Class

Class is like a container for two primary elements: attributes and methods. In this chapter we will learn about attributes and how to use them. For a student class common attributes will be name, gpa, email etc.

Understanding Attributes

Attributes, also often referred as properties or fields, they are the variables that are held within a class. Their job is to represent the state or qualities of objects created from the class.

Public attributes and methods in a class can be directly accessed using the dot operator (.) on an object of the class.

cpp

main

copy
12345678910
class Example { public: float attribute; }; int main() { Example obj; obj.attribute = 25; }

Note

Don't be bothered about public keyword. It will be explained later.

Tarea

  • Add two more attributes to a student class.
  • Create an object of the class.
  • Assigned values to the attributes of created instance.

Tarea

  • Add two more attributes to a student class.
  • Create an object of the class.
  • Assigned values to the attributes of created instance.

Cambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones

¿Todo estuvo claro?

Sección 1. Capítulo 4
toggle bottom row

Attributes of the Class

Class is like a container for two primary elements: attributes and methods. In this chapter we will learn about attributes and how to use them. For a student class common attributes will be name, gpa, email etc.

Understanding Attributes

Attributes, also often referred as properties or fields, they are the variables that are held within a class. Their job is to represent the state or qualities of objects created from the class.

Public attributes and methods in a class can be directly accessed using the dot operator (.) on an object of the class.

cpp

main

copy
12345678910
class Example { public: float attribute; }; int main() { Example obj; obj.attribute = 25; }

Note

Don't be bothered about public keyword. It will be explained later.

Tarea

  • Add two more attributes to a student class.
  • Create an object of the class.
  • Assigned values to the attributes of created instance.

Tarea

  • Add two more attributes to a student class.
  • Create an object of the class.
  • Assigned values to the attributes of created instance.

Cambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones

¿Todo estuvo claro?

Class is like a container for two primary elements: attributes and methods. In this chapter we will learn about attributes and how to use them. For a student class common attributes will be name, gpa, email etc.

Understanding Attributes

Attributes, also often referred as properties or fields, they are the variables that are held within a class. Their job is to represent the state or qualities of objects created from the class.

Public attributes and methods in a class can be directly accessed using the dot operator (.) on an object of the class.

cpp

main

copy
12345678910
class Example { public: float attribute; }; int main() { Example obj; obj.attribute = 25; }

Note

Don't be bothered about public keyword. It will be explained later.

Tarea

  • Add two more attributes to a student class.
  • Create an object of the class.
  • Assigned values to the attributes of created instance.

Cambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
Sección 1. Capítulo 4
Cambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
We're sorry to hear that something went wrong. What happened?
some-alt