한국어에서 변수에는 을 사용하는 예와 영어로 번역
{-}
-
Colloquial
-
Ecclesiastic
-
Ecclesiastic
-
Programming
-
Computer
변수에는 몇 개의 수준이 있습니까?
그래서 모든 변수에는 이름과 값이 있습니다.
각 변수에는 값(390)이 할당된다.
그래서 모든 변수에는 이름과 값이 있습니다.
이러한 "전통적인" 또는 "직접 만든" 정적 변수에는 추가적인 특징이 있습니다.
C 의 각 변수에는 특정 유형이 있습니다….
각 변수에는 이름, 적절한 경우 도메인 및 (선택적으로) 텍스트가 지정됩니다.
쌍의 모든 변수에는 양의 상관관계가 있습니다.
어떤 숫자가 전달될거고,여기 정의한 이 "product" 라는 변수에는 1을 대입했지요.
모든 모듈 변수에는 해당 목적을 이해하기에 충분한 설명이 제공되어야합니다.
즉 함수에서 전달된 Argument의 값을 변경해도 원래의 Argument 변수에는 영향이 가지 않는다.
이 변수에는 6가지 수준이 있으며, 가능한 6가지 색상에 해당합니다.
전원 관리 옵션의 일부 변수에는 화면 밝기, 표시 시간 초과, 시스템 절전 등이 있습니다. 사용자 정의 할 수 있습니다….
값 형식의 변수에는 형식의 값이 포함되어 있습니다.A variable of a value type contains a value of the 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.
사용자 변수에는 네 개의 파라메터가 있습니다: Index (1 to 5 inclusive), Name, Value, and 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.
열거형 형식의 변수에는 명명된 상수뿐 아니라 기본 형식의 범위에 있는 모든 값을 할당할 수 있습니다.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.
변수를 단일 행 결과 집합 유형이 있는 결과 집합에 매핑하면 변수에는 결과 집합이 포함하는 열의 데이터 형식과 호환되는 데이터 형식이 있어야 합니다. 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.
값 형식을 사용 하는 경우 변수에는 각각 고유한 데이터 사본이 있으며 한 변수에 대 한 작업이 다른 변수에 영향을 줄 수 없습니다. 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.
값 형식의 변수에는 해당 데이터가 직접 포함되지만 참조 형식의 변수에는 데이터(개체라고도 함)에 대한 참조가 저장됩니다. 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.