검색어: a float (영어 - 중국어(간체자))

인적 기여

전문 번역가, 번역 회사, 웹 페이지 및 자유롭게 사용할 수 있는 번역 저장소 등을 활용합니다.

번역 추가

영어

중국어(간체자)

정보

영어

please enter a float value > %1

중국어(간체자)

请输入一个 >% 1 的浮点数值

마지막 업데이트: 2011-10-23
사용 빈도: 9
품질:

경고: 보이지 않는 HTML 형식이 포함되어 있습니다

영어

this is a float item that provides a compass.

중국어(간체자)

显示可浮动的指南针 。

마지막 업데이트: 2011-10-23
사용 빈도: 3
품질:

영어

this is a float item that provides a map scale.

중국어(간체자)

显示一个浮动的地图缩放栏 。

마지막 업데이트: 2011-10-23
사용 빈도: 3
품질:

영어

returns true if var is a float, false otherwise.

중국어(간체자)

description

마지막 업데이트: 2011-10-24
사용 빈도: 1
품질:

영어

please enter a float value between %1 and %2

중국어(간체자)

请输入一个在% 1 和% 2 之间的浮点数

마지막 업데이트: 2011-10-23
사용 빈도: 3
품질:

영어

malformed parameter in the epsf special command. expected a float to follow %1 in %2

중국어(간체자)

epsf 特殊指令的参数畸形 。 在% 2 中 ,% 1 后面应该是浮点数 。

마지막 업데이트: 2011-10-23
사용 빈도: 3
품질:

영어

a float switch is a versatile component used to meet the needs of hundreds of different products and applications.

중국어(간체자)

浮控开关是一种万能型组件,可满足上百种不同的产品和应用的需要。

마지막 업데이트: 2016-12-04
사용 빈도: 1
품질:

영어

if none of the values is a float, all of them will be treated as integers, and an integer is returned.

중국어(간체자)

if the first parameter is an array, max() returns the highest value in that array. if the first parameter is an integer, string or float, you need at least two parameters and max() returns the biggest of these values. you can compare an unlimited number of values.

마지막 업데이트: 2011-10-24
사용 빈도: 1
품질:

영어

if any of the operands is a float, then all operands are evaluated as floats, and the result will be a float.

중국어(간체자)

$foo = "0"; // $foo is string (ascii 48) $foo += 2; // $foo is now an integer (2) $foo = $foo + 1.3; // $foo is now a float (3.3) $foo = 5 + "10 little piggies"; // $foo is integer (15) $foo = 5 + "10 small pigs"; // $foo is integer (15)

마지막 업데이트: 2011-10-24
사용 빈도: 1
품질:

경고: 보이지 않는 HTML 형식이 포함되어 있습니다

영어

if you give it an unsigned integer value too large to be stored that way it is converted to a float which often yields an undesired result.

중국어(간체자)

also note that php internally stores integer values as signed values of a machine dependent size. if you give it an unsigned integer value too large to be stored that way it is converted to a float which often yields an undesired result.

마지막 업데이트: 2011-10-24
사용 빈도: 1
품질:

영어

a float switch can be incorporated into a product, such as bilge pump, or can be purchased as a component to be used in a customer specific application.

중국어(간체자)

浮控开关 可安装到船底排水泵等产品上,也可买来作为一个组件在客户特殊的应用环境中使用。

마지막 업데이트: 2016-12-04
사용 빈도: 1
품질:

영어

if you specify a number beyond the bounds of the integer type, it will be interpreted as a float if you specify a number beyond the bounds of the integer type, it will be interpreted as a float instead.

중국어(간체자)

decimal: [1-9][0-9]* _bar_ 0 hexadecimal: 0[xx][0-9a-fa-f]+ octal: 0[0-7]+ integer: [+-]?decimal _bar_ [+-]?hexadecimal _bar_ [+-]?octal

마지막 업데이트: 2011-10-24
사용 빈도: 1
품질:

영어

"double" (for historical reasons "double "is returned in case of a float, and not simply "float")

중국어(간체자)

"double" (for historical reasons "double" is returned in case of a float, and not simply "float")

마지막 업데이트: 2011-10-24
사용 빈도: 1
품질:

경고: 보이지 않는 HTML 형식이 포함되어 있습니다

영어

returns true if val is infinite (positive or negative), like the result of log(0) or any value too big to fit into a float on this platform.

중국어(간체자)

returns true if val is infinite (positive or negative), like the result of log(0) or any value too big to fit into a float on this platform.

마지막 업데이트: 2011-10-24
사용 빈도: 1
품질:

영어

there are two basic types of operation for float switches. the first method is that a float switch can be located in a buoyant float housing and can be actuated based upon rising and falling liquid levels. the second method is that a float switch can be stationary and can be actuated by the presence or absence of liquid.

중국어(간체자)

浮控开关有两种基本的操作方法:第一种方法是将浮控开关置于有浮力的浮子套内,然后根据液位的升降操作浮控开关;第二种方法是将浮控开关固定,然后根据液体是否存在操作浮控开关。

마지막 업데이트: 2016-12-04
사용 빈도: 1
품질:

영어

?php $foo = "0"; / / $foo is string (ascii 48) !- - bad example, no real operator (must be used with variable, modifies it too) $foo++; / / $foo is the string "1" (ascii 49) - - $foo += 2; / / $foo is now an integer (2) $foo = $foo + 1.3; / / $foo is now a float (3.3) $foo = 5 + "10 little piggies"; / / $foo is integer (15) $foo = 5 + "10 small pigs"; / / $foo is integer (15) !- - todo: explain ++ / - - behaviour with strings examples: ++'001 '= '002' ++'abc '= 'abd' ++'xyz '= 'xza' ++'9.9 '= '9.0' ++'-3 '= '-4' - -'9 '= 8 (integer!) - -'5.5' = '5.5 '- -'-9' = -10 (integer) - -'09 '= 8 (integer) - -'abc' = 'abc '- -?

중국어(간체자)

Ѝǿֆת»»

마지막 업데이트: 2011-10-24
사용 빈도: 1
품질:

경고: 보이지 않는 HTML 형식이 포함되어 있습니다

인적 기여로
8,906,531,897 더 나은 번역을 얻을 수 있습니다

사용자가 도움을 필요로 합니다:



당사는 사용자 경험을 향상시키기 위해 쿠키를 사용합니다. 귀하께서 본 사이트를 계속 방문하시는 것은 당사의 쿠키 사용에 동의하시는 것으로 간주됩니다. 자세히 보기. 확인