-
61 assert statement
English-Russian dictionary of Information technology > assert statement
-
62 assertion statement
English-Russian dictionary of Information technology > assertion statement
-
63 break statement
English-Russian dictionary of Information technology > break statement
-
64 case statement
English-Russian dictionary of Information technology > case statement
-
65 conditional go-to statement
English-Russian dictionary of Information technology > conditional go-to statement
-
66 data definition statement
English-Russian dictionary of Information technology > data definition statement
-
67 file definition statement
English-Russian dictionary of Information technology > file definition statement
-
68 file identification statement
English-Russian dictionary of Information technology > file identification statement
-
69 format statement
English-Russian dictionary of Information technology > format statement
-
70 formatted read statement
English-Russian dictionary of Information technology > formatted read statement
-
71 formatted write statement
English-Russian dictionary of Information technology > formatted write statement
-
72 imperative go-to statement
English-Russian dictionary of Information technology > imperative go-to statement
-
73 iteration statement
English-Russian dictionary of Information technology > iteration statement
-
74 labeled statement
English-Russian dictionary of Information technology > labeled statement
-
75 repetitive statement
English-Russian dictionary of Information technology > repetitive statement
-
76 executable statement
оператор, который, в отличие от операторов объявлений (декларативных операторов, nonexecutable statement), вызывает выполнение каких либо действий программы (разумеется, после всех необходимых этапов превращения исходного текста программы в машинный или промежуточный код).Executing a statement produces a computation that can halt (normal outcome), raise an exception, cause a checked runtime error, or loop forever. — Исполнение оператора порождает вычисление, которое может закончиться (нормальный результат), вызвать исключение, стать причиной контролируемой ошибки времени исполнения или же исполняться бесконечно (зациклиться) см. тж. assignment operator, data declaration, object code, statement, type declaration
Англо-русский толковый словарь терминов и сокращений по ВТ, Интернету и программированию. > executable statement
-
77 while statement
оператор цикла с предусловием, оператор whileстандартный оператор задания цикла в ЯВУ; исполнение цикла в нём продолжается до тех пор, пока условие выполняетсясм. тж. pretested loopАнгло-русский толковый словарь терминов и сокращений по ВТ, Интернету и программированию. > while statement
-
78 Executing a statement produces a computation that can halt (normal outcome), raise an exception, cause a checked runtime error, or loop forever
Общая лексика: Исполнение оператора порождает вычисление, которое может закончиться (нормальный результат), вызвать исклУниверсальный англо-русский словарь > Executing a statement produces a computation that can halt (normal outcome), raise an exception, cause a checked runtime error, or loop forever
-
79 Executing a statement produces a computation that can halt , raise an exception, cause a checked runtime error, or loop forever
Общая лексика: (normal outcome) Исполнение оператора порождает вычисление, которое может закончиться (нормальный результат), вызвать исклУниверсальный англо-русский словарь > Executing a statement produces a computation that can halt , raise an exception, cause a checked runtime error, or loop forever
-
80 оператор цикла
DO statement, do statement, for statement, iterative statement, loop statement, repeat statement, repetitive statement, while statementБольшой англо-русский и русско-английский словарь > оператор цикла
См. также в других словарях:
Loop nest optimization — (LNO) is a special case of loop transformation, dealing with nested loops, that allows large reductions in the cache bandwidth necessary for some common algorithms.Example: Matrix multiplyMany large mathematical operations on computers end up… … Wikipedia
Loop optimization — In compiler theory, loop optimization plays an important role in improving cache performance, making effective use of parallel processing capabilities, and reducing overheads associated with executing loops. Most execution time of a scientific… … Wikipedia
Loop variant — In computer science, a loop variant is a mathematical function defined on the state space of a computer program having the property that each iteration of a loop (given its invariant) strictly decreases its value with respect to a well founded… … Wikipedia
Statement (programming) — In computer programming a statement can be thought of as the smallest standalone element of an imperative programming language. A program is formed by a sequence of one or more statements. A statement will have internal components (eg,… … Wikipedia
Loop dependence analysis — In compiler theory, loop dependence analysis is the task of determining whether statements within a loop body form a dependence, almost always with respect to array access and modification. For a normalized loop: for i1 from l1 to u1 do for i2… … Wikipedia
Loop-switch sequence — A loop switch sequence is a specific derivative of the spaghetti code programming antipattern where a clear set of steps is implemented as a byzantine switch within a loop. Also known as The FOR CASE paradigm… … Wikipedia
For loop — In computer science a for loop is a programming language statement which allows code to be repeatedly executed. A for loop is classified as an iteration statement.Unlike many other kinds of loops, such as the while loop, the for loop is often… … Wikipedia
Do while loop — diagram In most computer programming languages, a do while loop, sometimes just called a do loop, is a control flow statement that allows code to be executed repeatedly based on a given Boolean condition. Note though that unlike most languages,… … Wikipedia
While loop — In most computer programming languages, a while loop is a control flow statement that allows code to be executed repeatedly based on a given boolean condition. The while loop can be thought of as a repeating if statement.The while construct… … Wikipedia
Infinite loop — This article is about the programming term. For the street on which Apple Inc. s campus is located, see Infinite Loop (street). An infinite loop (also known as an endless loop) is a sequence of instructions in a computer program which loops… … Wikipedia
Moufang loop — In mathematics, a Moufang loop is a special kind of algebraic structure. It is similar to a group in many ways but need not be associative. Moufang loops were introduced by Ruth Moufang. Contents 1 Definition 2 Examples 3 Properties … Wikipedia