변수에는 영어 뜻 - 영어 번역

명사
variable
변수
가변
a variable
변광성
변동
the variable
변하기 쉬운
variables
변수
가변
a variable
변광성
변동
the variable
변하기 쉬운

한국어에서 변수에는 을 사용하는 예와 영어로 번역

{-}
  • Colloquial category close
  • Ecclesiastic category close
  • Ecclesiastic category close
  • Programming category close
  • Computer category close
변수에는 몇 개의 수준이 있습니까?
How many levels does the variable have?
그래서 모든 변수에는 이름과 값이 있습니다.
Each variable has a name and values.
변수에는 값(390)이 할당된다.
Each variable is assigned a value 390.
그래서 모든 변수에는 이름과 값이 있습니다.
Each variable has a name and a value.
이러한 "전통적인" 또는 "직접 만든" 정적 변수에는 추가적인 특징이 있습니다.
This"traditional" or"home made" static variable has an extra feature.
C 의 각 변수에는 특정 유형이 있습니다….
Each variable in C has a specific type.
변수에는 이름, 적절한 경우 도메인 및 (선택적으로) 텍스트가 지정됩니다.
Each variable is given a name, a domain if appropriate, and(optionally) text.
쌍의 모든 변수에는 양의 상관관계가 있습니다.
€¢ All six pairs of variables are positively correlated.
어떤 숫자가 전달될거고,여기 정의한 이 "product" 라는 변수에는 1을 대입했지요.
It is going tobe passed some number, we define this variable"product" equals 1.
모든 모듈 변수에는 해당 목적을 이해하기에 충분한 설명이 제공되어야합니다.
All module variables should be provided with a comment sufficient to understand their purpose.
즉 함수에서 전달된 Argument의 값을 변경해도 원래의 Argument 변수에는 영향이 가지 않는다.
Therefore, any changes made to the argument in passed method won't change the value of original argument.
변수에는 6가지 수준이 있으며, 가능한 6가지 색상에 해당합니다.
There are six levels of this variable, corresponding to the six colors that are possible.
전원 관리 옵션의 일부 변수에는 화면 밝기, 표시 시간 초과, 시스템 절전 등이 있습니다. 사용자 정의 할 수 있습니다….
Some of the variables in a power plan include screen brightness, display timeout, system sleep, and more. Users can customize….
값 형식의 변수에는 형식의 값이 포함되어 있습니다.A variable of a value type contains a value of the type.
A variable of a value type always contains a value of that type.
런타임에 참조 형식의 변수를 선언하면 new 연산자를 사용하여 개체를 명시적으로 만들거나 다음 예제와 같이 new를 사용하여 다른 곳에서 만들어진 개체를 할당할 때까지 변수에는 null 값이 포함됩니다. At run time, when you declare a variable of a reference type, the variable contains the value null until you explicitly create an object by using the new operator, or assign it an object that has been created elsewhere by using new, as shown in the following example.
At run time, when you declare a variable of a reference type, the variable contains the value null until you explicitly create an object by using the new operator, or assign it an object that has been created elsewhere by using new, as shown in the following example.
사용자 변수에는 네 개의 파라메터가 있습니다: Index (1 to 5 inclusive), Name, Value, and Scope (옵션, 기본값은 페이지 범위).
There are 4 parameters in a custom variable: Index(1 to 5 inclusive), Name, Value, and Scope(Optional, defaults to Page Scope).
런타임에 참조 형식의 변수를 선언하면 new 연산자를 사용하여 개체를 명시적으로 만들거나 다음 예제와 같이 new를 사용하여 다른 곳에서 만들어진 개체를 할당할 때까지 변수에는 null 값이 포함됩니다. At run time, when you declare a variable of a reference type, the variable contains the value null until you explicitly create an object by using the new operator, or assign it an object that has been created elsewhere by using new, as shown in the following example.
At run time, when you declare a variable of a reference type, the variable contains the value null until you explicitly create an instance of the class by using the new operator, or assign it an object of a compatible type that may have been created elsewhere, as shown in the following example.
열거형 형식의 변수에는 명명된 상수뿐 아니라 기본 형식의 범위에 있는 모든 값을 할당할 수 있습니다.A variable of an enumeration type can be assigned any value in the range of the underlying type; the values are not limited to the named constants.
A variable of type Days can be assigned any value in the range of the underlying type; the values are not limited to the named constants.
변수를 단일 행 결과 집합 유형이 있는 결과 집합에 매핑하면 변수에는 결과 집합이 포함하는 열의 데이터 형식과 호환되는 데이터 형식이 있어야 합니다. When you map a variable to a result set with the Single row result set type, the variable must have a data type that is compatible with the data type of the column that the result set contains.
When you map a variable to a result set with the Single row result set type, the variable must have a data type that is compatible with the data type of the column that the result set contains.
값 형식 변수에는 해당 값이 직접 포함되므로, 변수가 선언된 컨텍스트에 관계없이 메모리가 인라인으로 할당됩니다. Value type variables directly contain their values, which means that the memory is allocated inline in whatever context the variable is declared.
Value type variables directly contain their values, which means that the memory is allocated inline in whatever context the variable is declared.
값 형식을 사용 하는 경우 변수에는 각각 고유한 데이터 사본이 있으며 한 변수에 대 한 작업이 다른 변수에 영향을 줄 수 없습니다. With value types, the variables each have their own copy of the data, and it is not possible for operations on one to affect the other.
With value types, each variable has its own copy of the data, and it is not possible for operations on one variable to affect the other.
값 형식의 변수에는 해당 데이터가 직접 포함되지만 참조 형식의 변수에는 데이터(개체라고도 함)에 대한 참조가 저장됩니다. Variables of value types directly contain their data whereas variables of reference types store references to their data, the latter being known as objects.
Variables of value types directly contain their data whereas variables of reference types store references to their data, the latter being known as objects.
값 형식을 사용 하는 경우 변수에는 각각 고유한 데이터 사본이 있으며 한 변수에 대 한 작업이 다른 변수에 영향을 줄 수 없습니다. With value types, the variables each have their own copy of the data, and it is not possible for operations on one to affect the other.
With value types, the variables each have their own copy of the data, and it is not possible for operations on one value type variable to affect another.
결과: 23, 시각: 0.0204

최고 사전 질의

한국어 - 영어