Warning: Undefined variable $resultados in /home/enciclo/public_html/dictious.com/search.php on line 17
std%3A%3Acopy - Dictious

10 Talált eredmények " std::copy"

std::copy

<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...


std::unique copy

<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> -...


std::back inserter

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:...


std::replace

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...


std::reverse

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...


std::memcpy

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); //...


copy constructor

adattagjait. Az alapértelmezett <span class="searchmatch">copy</span> constructor szintaxisa: ClassName(const ClassName&amp; other); #include &lt;iostream&gt; using namespace <span class="searchmatch">std</span>; class MyClass { public:...


copy assignment operator

<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 copy

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 copy

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...