Results for conditional translation from English to Japanese

English

Translate

conditional

Translate

Japanese

Translate
Translate

Instantly translate texts, documents and voice with Lara

Translate now

Human contributions

From professional translators, enterprises, web pages and freely available translation repositories.

Add a translation

English

Japanese

Info

English

conditional

Japanese

条件文

Last Update: 2014-02-24
Usage Frequency: 4
Quality:

Excellent

Reference: Wikipedia

English

conditional tag

Japanese

条件分岐タグ

Last Update: 2014-05-16
Usage Frequency: 1
Quality:

Be the first to vote

Reference: Wikipedia

English

material conditional

Japanese

論理包含演算

Last Update: 2012-09-11
Usage Frequency: 25
Quality:

Excellent

Reference: Wikipedia

English

variable, conditional

Japanese

インタビュアー効果

Last Update: 2014-12-09
Usage Frequency: 1
Quality:

Be the first to vote

Reference: Wikipedia
Warning: This alignment may be wrong.
Please delete it you feel so.

English

conditional-head1

Japanese

stencils

Last Update: 2011-10-23
Usage Frequency: 2
Quality:

Be the first to vote

Reference: Wikipedia

English

add conditional formatting

Japanese

条件付きセル書式を追加

Last Update: 2011-10-23
Usage Frequency: 1
Quality:

Be the first to vote

Reference: Wikipedia

English

about conditional inclusion

Japanese

条件付きで含めるには...

Last Update: 2011-10-23
Usage Frequency: 1
Quality:

Be the first to vote

Reference: Wikipedia

English

remove the conditional cell styles

Japanese

セルの条件付きスタイルを削除

Last Update: 2011-10-23
Usage Frequency: 1
Quality:

Be the first to vote

Reference: Wikipedia

English

permitted use versus conditional use?

Japanese

無条件使用と制限使用だ

Last Update: 2016-10-27
Usage Frequency: 1
Quality:

Be the first to vote

Reference: Wikipedia

English

the conditional statement won' t affect require().

Japanese

include() のドキュメントにはさらに多くの例がありますので 参照してください。

Last Update: 2011-10-24
Usage Frequency: 1
Quality:

Be the first to vote

Reference: Wikipedia

English

statewide permitted use zoning. no more conditional zoning.

Japanese

州全体の無条件土地使用

Last Update: 2016-10-27
Usage Frequency: 1
Quality:

Be the first to vote

Reference: Wikipedia

English

it's conditional upon your adherence to public decency.

Japanese

公序良俗に反してなければね

Last Update: 2016-10-27
Usage Frequency: 1
Quality:

Be the first to vote

Reference: Wikipedia

English

the position is conditional on how well you are able to perform.

Japanese

地位は君の力量しだいだ。

Last Update: 2014-02-01
Usage Frequency: 1
Quality:

Be the first to vote

Reference: Wikipedia

English

the function implementation is surrounded by a conditional compilation statement.

Japanese

this function is special to all dynamic loadable modules. take a look at the creation via the zend_get_module macro first:

Last Update: 2011-10-24
Usage Frequency: 1
Quality:

Be the first to vote

Reference: Wikipedia

English

conditional on a period of indeterminate incarceration at a psychiatric facility.

Japanese

不確定の監禁の期間条件文 精神科の施設で

Last Update: 2016-10-27
Usage Frequency: 1
Quality:

Be the first to vote

Reference: Wikipedia

English

the position is conditional on how well you are able to perform. [m]

Japanese

地位は君の力量しだいだ。

Last Update: 2018-07-09
Usage Frequency: 2
Quality:

Be the first to vote

Reference: Wikipedia

English

these expressions are most commonly used inside conditional execution, such as if statements.

Japanese

これまでのところ、php/fi 2 のユーザーは何も変わったところがないと 思ったことでしょう。 しかし、php は、他の多くの言語が行うのと同じ手法で、 更に多くの式を使用可能です。 php 3 は、ほとんど全てが式であるという意味で、式指向の言語です。 既に取り扱った '$a=5' という例について考えてみましょう。 この式には、整数定数の '5' と 5 に更新された $a の値という 2 つの値が現れているということに容易に気づくことでしょう。 しかし、実際には、ここにはもうひとつの値が含まれています。 それは、代入自体の値です。 代入式は、それ自体、代入値を評価します。 この場合、その値は 5 になります。 このことは、実際には、'$a = 5' は、それが何をするかによらず、 値 5 を有する式であることを意味します。 つまり、 '$b = ($a = 5)' のように書くことは、'$a = 5; $b = 5;' と書くのと 同様なのです。(セミコロンは、文の終わりを示します。) 代入は、右から左へ実行されるため、'$b = $a = 5' と書くことも 可能です。

Last Update: 2011-10-24
Usage Frequency: 1
Quality:

Be the first to vote

Reference: Wikipedia

English

however, unlike else, it will execute that alternative expression only if the elseif conditional expression evaluates to true.

Japanese

elseif は、その名前から分かるように、 if と else の組み合わせです。 elseif は、 else のように、元の if 式の値が false の場合に別の文を実行するように if 文を拡張します。 しかし、 else とは異なり、 elseif 式が true の場合にのみ代わりの式を実行します。 例えば、次のコードは、 aはbより大きい 、 aはbに等しい 、 aはbより小さい を出力します。

Last Update: 2011-10-24
Usage Frequency: 1
Quality:

Be the first to vote

Reference: Wikipedia

English

you cannot prepend it to function or class definitions, or conditional structures such as if and foreach, and so forth.

Japanese

注意 @演算子は、式でのみ動作します。基本的なルールは次のようになります。 値を得ることができるものの場合、@演算子を前に付けることが可能です。 例えば、変数、関数、 include() コール、定数等の 前にこの演算子をつけることが可能です。関数またはクラスの定義や if や foreach 等のような条件構 造の前にこの演算子を付けることはできません。

Last Update: 2011-10-24
Usage Frequency: 1
Quality:

Be the first to vote

Reference: Wikipedia

English

there is one more expression that may seem odd if you haven 't seen it in other languages, the ternary conditional operator:

Japanese

本章のはじめで、様々な文の型について書くと言いましたが、 約束したように、式は、文なのです。 しかし、全ての式がひとつの文なわけではありません。 この場合、文は、'式'';' 、つまり式の後にセミコロンがついた形式です。 '$b=$a=5' において、$a=5 は有効な式ですが、自身を値とする文では ありません。しかし、'$b=$a=5;' は有効な文です。

Last Update: 2011-10-24
Usage Frequency: 1
Quality:

Be the first to vote

Reference: Wikipedia

Get a better translation with
8,821,328,601 human contributions

Users are now asking for help:



We use cookies to enhance your experience. By continuing to visit this site you agree to our use of cookies. Learn more. OK