Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Shortened Description #5657

Merged
merged 6 commits into from
Nov 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/cpp/concepts/classes/classes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
Title: 'Classes'
Description: 'A C++ class is a user-defined data type that encapsulates information and behavior about an object. It serves as a blueprint for future inherited classes. A class is comprised of class members which includes attributes and methods.'
Description: 'A C++ class is a blueprint for creating objects that combines data attributes and functions to define the behavior and state of an entity.'
Subjects:
- 'Computer Science'
- 'Game Development'
Expand All @@ -12,7 +12,7 @@ CatalogContent:
- 'paths/computer-science'
---

In C++, a **class** is a user-defined data type that encapsulates information and behavior about an object. It serves as a blueprint for future inherited classes.
A C++ **class** is a blueprint for creating objects that combines data attributes and functions to define the behavior and state of an entity.

```pseudo
class Person {
Expand Down
Loading