hsf-training / cpluspluscourse

C++ Course Taught at CERN, from Sebastien Ponce (LHCb)
Apache License 2.0
166 stars 62 forks source link

Items from 6th and JLab C++ Course #428

Closed hageboeck closed 6 months ago

hageboeck commented 1 year ago
bernhardmgruber commented 1 year ago

OO morning lecture:

bernhardmgruber commented 1 year ago

OOP:

Tools:

bernhardmgruber commented 1 year ago

From JLab course:

pcanal commented 1 year ago

137: can we list all the overloadable operators?

The original table comes from: https://en.cppreference.com/w/cpp/language/operators and does include the full list;

any of the following operators:+ - * / % ^ & \| ~ ! = < > += -= *= /= %= ^= &= \|= << >> >>= <<= == != <= >= <=> (since C++20) && \|\| ++ -- , ->* -> ( ) [ ]
pcanal commented 1 year ago