Skip to content

FernadoSL/cpp-snippets

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

C++ Snippets

Code snippets with some features of C++.


Const Functions

  • Safety first, used to protect the code;
  • Const functions cannot edit or alter the member variables;
  • So if a function does not change any member variable of the class, make it const;
  • Const object can call olny const functions;
  • CODE SNIPPET

alt text


Const Parameters

  • The parameter can't be modified in the function;
  • Users of the function can be sure that their object will not be changed;
  • No worry about side effects;
  • CODE SNIPPET

alt text


About

Code snippets with some features of c++

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages