Warning: Undefined variable $resultados in /home/enciclo/public_html/dictious.com/search.php on line 17
runtime_error - Dictious

10 Talált eredmények " runtime_error"

runtime error

<span class="searchmatch">runtime</span> <span class="searchmatch">error</span> (tsz. <span class="searchmatch">runtime</span> errors) (informatika) <span class="searchmatch">Runtime</span> <span class="searchmatch">error</span> (futásidejű hiba) – A <span class="searchmatch">runtime</span> <span class="searchmatch">error</span> olyan hiba, amely akkor következik be, amikor a program...


std::runtime error

std::<span class="searchmatch">runtime</span> <span class="searchmatch">error</span> (tsz. std::<span class="searchmatch">runtime</span> errors) (informatika) std::<span class="searchmatch">runtime</span>_<span class="searchmatch">error</span> a C++ kivételkezelési rendszerének része, és a futás közben jelentkező...


stdexcept class

std::logic_<span class="searchmatch">error</span> │ ├─ std::invalid_argument │ ├─ std::domain_<span class="searchmatch">error</span> │ ├─ std::length_<span class="searchmatch">error</span> │ └─ std::out_of_range └─ std::<span class="searchmatch">runtime</span>_<span class="searchmatch">error</span> ├─ std::range_<span class="searchmatch">error</span> ├─...


runtime

<span class="searchmatch">runtime</span> (tsz. runtimes) (informatika) futásidő A <span class="searchmatch">runtime</span> (futásidő) a program életciklusának az a szakasza, amikor a fordítás (compile time) után a program...


dynamic type checking

a = 5 b = 10 print(a + b) # OK, int + int a = &quot;foo&quot; print(a + b) # <span class="searchmatch">runtime</span> <span class="searchmatch">error</span>: str + int nem engedélyezett Az interpreter (pl. CPython) minden objektumhoz...


reverse Polish notation

== &quot;/&quot;) { if (a == 0.0) throw std::<span class="searchmatch">runtime</span>_<span class="searchmatch">error</span>(&quot;Nullával osztás&quot;); res = b / a; } else throw std::<span class="searchmatch">runtime</span>_<span class="searchmatch">error</span>(&quot;Ismeretlen operátor: &quot; + tok); st.push(res);...


max-heap

heapifyUp(heap.size() - 1); } int extractMax() { if (heap.empty()) throw <span class="searchmatch">runtime</span>_<span class="searchmatch">error</span>(&quot;Empty heap&quot;); int maxVal = heap[0]; heap[0] = heap.back(); heap.pop_back();...


C++ exception handling

std::string(&quot;Szöveges kivétel!&quot;); else throw std::<span class="searchmatch">runtime</span>_<span class="searchmatch">error</span>(&quot;Standard kivétel: std::<span class="searchmatch">runtime</span>_<span class="searchmatch">error</span>&quot;); } int main() { try { teszt(1); // Kivételt fog...


first in, first out

std::<span class="searchmatch">runtime</span>_<span class="searchmatch">error</span>(&quot;Sor megtelt&quot;); data[rear] = x; rear = (rear + 1) % capacity; ++count; } int dequeue() { if (count == 0) throw std::<span class="searchmatch">runtime</span>_<span class="searchmatch">error</span>(&quot;Üres...


FIFO

std::<span class="searchmatch">runtime</span>_<span class="searchmatch">error</span>(&quot;Sor megtelt&quot;); data[rear] = x; rear = (rear + 1) % capacity; ++count; } int dequeue() { if (count == 0) throw std::<span class="searchmatch">runtime</span>_<span class="searchmatch">error</span>(&quot;Üres...