C++ links¶

Links from reddit’s cpp channel:

  • Get started: The C++ Standard Home has a nice *get started* page.

  • Reference: cpp reference (cppreference.com)

  • The Definitive C++ Book Guide and List (stackoverflow dot com)

Allocation of a std::vector¶

vector<Type> vec // vec allocated in the stack, elements in the free store (heap)

vector<Type> *vect = new vector<Type> // allocated in the heap
  • Conference CPP Now http://cppnow.org/

    • Effective cmake talk by Daniel Pfeifer (2017)

Questions and answers¶

Why should I use a pointer rather than the object itself?

Captured from the top posts of a high reputation user in stack overflow.

Standards¶

JTC1/SC22/WG21 - The C++ Standards Committee - ISOCPP

github repository, including library working group issues repository

puffer-fish

Navigation

Notes

  • Bash
  • CentOS
  • C Programming
  • C++ links
  • Git notes
  • Magit
  • Go
  • Linux material
  • Notes on debian system administration
  • Dev containers
  • Haskell
  • Kernel
  • Java serial lines
  • Javascript
  • kubernetes notes
  • kubernetes course, chapter #8
  • Kubernetes Pods
  • Nix
  • Nixpkgs
  • Macports
  • Macports folders
  • man pages
  • Gnu make
  • matplotlib
  • Questions about minikube
  • Node
  • npm
  • OSX notes
  • Podman
  • PowerShell
  • Python related links
  • Python and Qt
  • Rust links
  • Rustlings
  • Secure shell
  • Utilities

Emacs entries

  • Emacs
  • Notes on creating an emacs package

Fedora entries

  • Fedora
  • mock

Related Topics

  • Documentation overview
    • Previous: C Programming
    • Next: Git notes
©2025, alst2821. | Powered by Sphinx 9.1.0 & Alabaster 1.0.0 | Page source