본문 바로가기
배움의공간(學)/C++

Universal References

by ㅋㅕㅋㅕㅇㅣ 2023. 11. 10.

LValue, RValue 에 대해 아직까지도 제대로 이해하기 어렵다.

퇴근길에 한번 읽어 봐야할 것들..

 

 

 

 

Universal References in C++11 -- Scott Meyers : Standard C++

 

isocpp.org

 

 

 

[번역] Universal References in C++11 — Scott Meyers

원문: Scott Meyers, Universal References in C++11, 번역: ChatGPT-3수정: lunchballer T&&가 항상 “Rvalue 참조”를 의미하는 것은 아닙니다.by Scott Meyers C++11에서 가장 중요한 새로운 기능 중 하나는 rvalue 참조입니

lunchballer.com

 

 

 

C++ Chapter 19.7 : 완벽한 전달과 std::forward

인프런에 있는 홍정모 교수님의 홍정모의 따라 하며 배우는 C++ 강의를 듣고 정리한 필기입니다. 😀 🌜 [홍정모의 따라 하며 배우는 C++]강의 들으러 가기!

ansohxxn.github.io

 

 

 

2024.07.11

이 분은 누굴까..

도플갱어? 평행이론?

비슷한 시기에 나와 동일한 고민과 개발들..

 

 

 

[c++] lvalue reference and rvalue reference

lvalues references and rvalues references in C++ with Examples - GeeksforGeeks l-value and r-value l=value는 객체를 가리키는 메모리 위치를 나타내고, r-value는 메모리 위치에 할당된 값을 나타냅니다. 여기서 참조 (refere

a-researcher.tistory.com

 

 

[c++] perfect forwarding (완벽한 전달)

Perfect forwarding Perfect Forwarding Definition 완벽한 전달 (Perfect forwarding)은 lvalue 또는 rvalue의 특성을 바꾸지 않고 함수 템플릿에 인자로 전달하는 것을 의미합니다. Lvalues and rvalues 여기서는 굳이 glvalues

a-researcher.tistory.com

 

 

 

[c++] logger 클래스 만들기

#include #include #include #include #include #include using namespace std; enum class LOGLEVEL : int { FATAL, ERRORS, WARN, INFO, DEBUG }; static LOGLEVEL kLogLevel = LOGLEVEL::DEBUG; class LogPrefix { public: LogPrefix(LOGLEVEL loglevel_ = LOGLEVEL::DEBUG

a-researcher.tistory.com

 

댓글