- 英
- agreement、arrangement、convention
- 関
- 一致、会議、賛成、準備、同意、配置、配列、約束、合意、慣習、整理
WordNet
- compatibility of observations; "there was no agreement between theory and measurement"; "the results of two tests were in correspondence" (同)correspondence
- harmony of peoples opinions or actions or characters; "the two parties were in agreement" (同)accord
- the determination of grammatical inflection on the basis of word relations (同)concord
- the thing arranged or agreed to; "they made arrangements to meet in Chicago" (同)arrangement
- the statement (oral or written) of an exchange of promises; "they had an agreement that they would not interfere in each others business"; "there was an understanding between management and the workers" (同)understanding
- the verbal act of agreeing
- the act of arranging and adapting a piece of music (同)arranging, transcription
- an organized structure for arranging or classifying; "he changed the arrangement of the topics"; "the facts were familiar but it was in the organization of them that he was original"; "he tried to understand their system of classification" (同)organization, organisation, system
- an orderly grouping (of things or persons) considered as a unit; the result of arranging; "a flower arrangement"
- the act of convening (同)convening
- something regarded as a normative example; "the convention of not naming the main character"; "violence is the rule not the exception"; "his formula for impressing visitors" (同)normal, pattern, rule, formula
- (diplomacy) an international agreement
- a large formal assembly; "political convention"
PrepTutorEJDIC
- 〈U〉(意見・感情などの)(…についての)『一致』,調和,同意《+『on』(『upon,about,with』)+『名』(『wh-節・句』)》 / 〈C〉(2者以上の間で結ばれた)『協定』,協約 / 〈U〉(人称・性・格の)一致(concord)
- 〈U〉(…の)『整理』,『配置』,配列《+『of』+『名』》 / 〈C〉整理(配列)した物 / 〈C〉整理(配置,配列)の仕方 / 《複数形で》(…の)手はず,準備《+『for』+『名』(do『ing』)》 / 〈C〉〈U〉協定,取り決め;和解,合意 / 〈U〉(音楽の)編曲;〈C〉編曲した曲
- 〈C〉(宗教上や政治上など特別の目的の)『会議』,協議会;《米》党大会(大統領候補者の指名・綱領決定などをする) / 〈C〉〈U〉『因習』,慣例,しきたり / 〈C〉(国家間などの)協定,申し合わせ
Wikipedia preview
出典(authority):フリー百科事典『ウィキペディア(Wikipedia)』「2014/06/25 19:05:50」(JST)
[Wiki ja表示]
協定(きょうてい)とは、当事者間における何らかの合意のこと。
|
このページは曖昧さ回避のためのページです。一つの語句が複数の意味・職能を有する場合の水先案内のために、異なる用法を一覧にしてあります。お探しの用語に一番近い記事を選んで下さい。このページへリンクしているページを見つけたら、リンクを適切な項目に張り替えて下さい。 |
UpToDate Contents
全文を閲覧するには購読必要です。 To read the full text you will need to subscribe.
Japanese Journal
- ZAITEN REPORT 企業 「協定無視」で船出するキリンHD磯崎新社長
- 国内の畜産物の需給動向 牛肉 日豪経済連携協定(EPA)、1月15日に発効
- 農畜産業振興機構畜産需給部,農畜産業振興機構調査情報部
- 畜産の情報 = Livestock industries information (304), 34-36, 2015-02
- NAID 40020336631
- スクランブルゾーン 経済連携協定(EPA)による外国人看護師候補生に対する新たな学習支援
Related Links
- ブリタニカ国際大百科事典 小項目事典 - 協定の用語解説 - 広義では,当事者間において成立する特殊の合意。狭義では,(1) 独占禁止法上は,自由かつ公正な競争を排除または制限する目的で同業者の間に成立する特殊の合意を意味 ...
- 朝日新聞掲載「キーワード」 - 36協定の用語解説 - 労働基準法36条に基づく労使協定で、「さぶろくきょうてい」と呼ばれることが多い。会社が法定労働時間(1日8時間、週40時間)を超えた時間外労働を命じる場合、必要となる。労組など ...
Related Pictures
★リンクテーブル★
[★]
- 英
- sequence、arrangement、array、constellation、arrange、sequential
- 関
- 協定、経時的、系列、結果、シークエンス、シーケンス、順序、準備、筋道、整列、取り計らう、配置、配列決定、連続、連続的、逐次、結果としての、時系列、並べる、アレイ、順次、整理
array_unique()
for ( $i = 0 ; $i < 5 ; $i++ ) {
$a['w'][$i] = $i+100;
$a['m'][$i] = 1;
}
for ( $i = 5 ; $i < 15 ; $i++ ) {
$a['w'][$i] = $i+100;
$a['m'][$i] = 2;
}
for ( $i = 15 ; $i < 20 ; $i++ ) {
$a['w'][$i] = $i+100;
$a['m'][$i] = 3;
}
$a['w'][5]=100;
$a['w'][15]=100;
var_dump($a);
$b = array_unique($a['w']); #配列 重複キー 消去
var_dump($b);
-----
array(2) {
["w"]=> array(20)
{
[0]=> int(100) [1]=> int(101) [2]=> int(102) [3]=> int(103) [4]=> int(104) [5]=> int(100) [6]=> int(106) [7]=> int(107) [8]=> int(108) [9]=> int(109) [10]=> int(110) [11]=> int(111) [12]=> int(112) [13]=> int(113) [14]=> int(114) [15]=> int(100) [16]=> int(116) [17]=> int(117) [18]=> int(118) [19]=> int(119) }
["m"]=> array(20)
{
[0]=> int(1) [1]=> int(1) [2]=> int(1) [3]=> int(1) [4]=> int(1) [5]=> int(2) [6]=> int(2) [7]=> int(2) [8]=> int(2) [9]=> int(2) [10]=> int(2) [11]=> int(2) [12]=> int(2) [13]=> int(2) [14]=> int(2) [15]=> int(3) [16]=> int(3) [17]=> int(3) [18]=> int(3) [19]=> int(3) } }
array(18) {
[0]=> int(100) [1]=> int(101) [2]=> int(102) [3]=> int(103) [4]=> int(104) [6]=> int(106) [7]=> int(107) [8]=> int(108) [9]=> int(109) [10]=> int(110) [11]=> int(111) [12]=> int(112) [13]=> int(113) [14]=> int(114) [16]=> int(116) [17]=> int(117) [18]=> int(118) [19]=> int(119) }
配列の要素の除去
array_pop
- 配列のインデックスから、末尾にあるインデックス1つを取り除く。指定した変数の配列が空だった場合には、null が帰される。
配列の結合
- 1. +演算子。同じキーを上書きする。
- 2. array_push(array, array)とすると、出力が array([0]->array, [1]->array)になる。
- 3. array_match(out_array, add_array)これでokだが、add_array = array();だとエラーが起こるので、適当なトラップが必要。 ← array_mergeの間違えでしょ?
配列要素の結合
$str = implode('/',$array);
配列の要素表示
[★]
- 英
- agreement、consensus、coincidence、concert、concordance、correspondence、accordance、unity、congruence、correspond、coincide、accord、agree、conform、fit、concur、match、consistent、concurrent、corresponding、concerted、congruent、consonant、unanimous
- 関
- 合う、あてはまる、一貫性、協奏的、協定、コンセンサス、賛成、従う、相当、対応、単一、調和、適当、同意、同時、同時的、同時発生、同時発生的、同調、匹敵、フィット、併発、併用、約束、似ている、一貫した、適合、整合、装着、合意、合同、統一性、単一体、マッチ、子音
-congruence
[★]
- 関
- accord、accordance、agree、appointment、approval、approve、arrangement、coincide、coincidence、concert、concerted、concordance、concur、concurrent、conform、congruence、congruent、consensus、consent、consistent、consonant、convention、correspond、correspondence、corresponding、engage、engagement、fit、match、promise、unanimous、unity
[★]
- 英
- preparation、arrangement、reserve、preparedness、prepare、reserve、arrange、preparatory
- 関
- 協定、作成、製剤、蓄え、調製、貯蔵、貯蔵型、取り計らう、配置、配列、標品、標本、プレップ、プレパラート、保留、用意、予備、予約、余裕量、製法、並べる、確保、整理、覚悟
[★]
- 関
- agreement、arrange、array、configuration、constellation、convention、deploy、deployment、disposal、dispose、disposition、place、placement、preparation、preparatory、prepare、preparedness、reserve、sequence、sequential
[★]
- 英
- Trans-Pacific Partnership TPP
記事より
2010/12/11
2006年にチリ、ブルネイ、シンガポール、ニュージーランドの4カ国で発行した広域的な自由貿易協定(FTA)。
全ての物品の関税を撤廃するのが減速
2010年03月から米国、オーストラリア、ペルー、ベトナムが
2010年10月からマレーシアが加わり、9ヵ国で拡大交渉を進めている。
日本は11月に情報収集を進めながら、国内の環境整備を早急に進め、関係国との協議を開始する]との基本方針を定めた。
交渉に参加するには交渉中の9ヵ国から合意を取り付ける必要がある。
特定分野の自由化を除外して交渉に加わることは認められていない。