Also known as reference, reference type, reference datatype
в программировании — объект, указывающий на определённые данные, но не хранящий их

Pointers and References in C++ - GeeksforGeeks
Your All-in-One Learning Portal: GeeksforGeeks is a comprehensive educational platform that empowers learners across domains-spanning computer science and programming, school education, upskilling, commerce, software tools, competitive exams, and more., Your All-in-One Learning Portal. It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview Questions.
geeksforgeeks.org →Pointers store memory addresses and provide indirect access to data. References create an alternative name for an existing variable. Both are commonly used for efficient parameter passing and data manipulation. Pointers are variables that store the memory address of another variable. They provide direct access to memory locations and are commonly used for dynamic memory allocation, efficient parameter passing, and implementing complex data structures. Store the address of a variable or memory location. Can be reassigned to point to different variables. Can store a nullptr value when not pointing to any valid memory location. Require the dereference operator ( ) to access the value stored at the address. Have their own memory address independent of the variable they point to. Pointers and references are both used to access and manipulate data indirectly, but they differ in how they store and refer to memory. The following table highlights the key differences between pointers and references in C++.
Excerpt from a page describing this subject · 11,130 chars · not written by Vinony
Ссылка в программировании — это объект, указывающий на определенные данные, но не хранящий их. Получение объекта по ссылке называется разыменованием. Ссылка не является указателем, а просто является другим именем для объекта. Главное отличие ссылки от указателей в том, что указатель это целое число и поэтому для него доступны операции с целыми числами, а для ссылки доступны только операции копирования и разыменования. В языках программирования ссылка может быть реализована как переменная, содержащая адрес ячейки памяти. В некоторых языках высокого уровня также имеется возможность использовать ссылки на объекты при передаче объектов в подпрограмму и из подпрограммы.
Abstract from DBpedia / Wikipedia · CC BY-SA
Discovered by embedding cosine similarity (sentence-transformers MiniLM, 384-dim).
via Wikidata · CC0
via Wikidata sitelinks · CC0