<span class="searchmatch">std</span>::<span class="searchmatch">copy</span> (tsz. <span class="searchmatch">std</span>::copies) (informatika) A <span class="searchmatch">std</span>::<span class="searchmatch">copy</span> egy STL algoritmus C++-ban, amely lehetővé teszi, hogy egy tartomány elemeit átmásold egy másik...
<span class="searchmatch">std</span>::unique <span class="searchmatch">copy</span> (tsz. <span class="searchmatch">std</span>::unique copies) (informatika) ? <span class="searchmatch">std</span>::unique <span class="searchmatch">copy</span> - Szótár.net (en-hu) <span class="searchmatch">std</span>::unique <span class="searchmatch">copy</span> - Sztaki (en-hu) <span class="searchmatch">std</span>::unique <span class="searchmatch">copy</span> -...
konténer végére automatikusan, pl. amikor <span class="searchmatch">std</span>::<span class="searchmatch">copy</span>, <span class="searchmatch">std</span>::transform, <span class="searchmatch">std</span>::remove_<span class="searchmatch">copy</span>, stb. algoritmusokat használsz. <span class="searchmatch">std</span>::back_inserter(container); container:...
másolatot szeretnél, használhatod a <span class="searchmatch">std</span>::replace_<span class="searchmatch">copy</span> algoritmust: <span class="searchmatch">std</span>::replace_<span class="searchmatch">copy</span>(source.begin(), source.end(), <span class="searchmatch">std</span>::back_inserter(destination), keresett_érték...
konténerbe szeretnéd tenni, kombinálhatod <span class="searchmatch">std</span>::reverse_<span class="searchmatch">copy</span>-val: <span class="searchmatch">std</span>::reverse_<span class="searchmatch">copy</span>(source.begin(), source.end(), <span class="searchmatch">std</span>::back_inserter(destination)); → így az...
forrás és célterületek között. Amikor <span class="searchmatch">std</span>::<span class="searchmatch">copy</span> túl általános, és kézi optimalizálásra van szükség. char buffer[10]; <span class="searchmatch">std</span>::memcpy(buffer + 2, buffer, 5); //...
adattagjait. Az alapértelmezett <span class="searchmatch">copy</span> constructor szintaxisa: ClassName(const ClassName& other); #include <iostream> using namespace <span class="searchmatch">std</span>; class MyClass { public:...
<span class="searchmatch">copy</span> assignment operator (tsz. <span class="searchmatch">copy</span> assignment operators) (informatika) A másoló értékadó operátor (angolul: <span class="searchmatch">copy</span> assignment operator) a C++ nyelv egyik...
deep <span class="searchmatch">copy</span> (tsz. deep copies) (informatika) teljes körű másolat A mély másolás (Deep <span class="searchmatch">Copy</span>) egy olyan módszer C++-ban, amely lehetővé teszi, hogy egy objektum...
shallow <span class="searchmatch">copy</span> (tsz. shallow copies) (informatika) alapszintű másolat A sekély másolás (shallow <span class="searchmatch">copy</span>) egy objektum másolásának legegyszerűbb módja C++-ban...