官方语言

Multi tool use
官方语言或稱法定語文,是經由國家、政府或其他具有管轄權的組織所認定具備法定地位的語言及文字。一個國家的官方語言通常就是政府機構中使用的正式語言,是其公民与其政府机关通讯时使用的语言。
簡介
一个国家的官方语言,一般从该国使用范围最广或使用人数最多的语言中选择一种或几种,如中國大陸為普通話,韓國為韓語。
在一些曾被殖民的國家,可能以前宗主國語言作為唯一官方語言或者其中一種官方語言;比如拉丁美洲除了巴西(葡萄牙語)、海地(法語)以及法屬圭亞那(法語)外,其他国家皆以西班牙语为官方語言(但不一定為唯一官方語言,部分國家也有原住民語言同為官方語言);非洲許多國家,以英語或法語作為國家唯一官方語言或官方語言中的一種。加拿大是以英語及法語作為官方語言(曾依次為法國及英國殖民地)。香港法定語文包括中文及英文(前宗主國英国的語言),澳門法定語文包括中文及葡萄牙文(前宗主國葡萄牙的語言)。
官方語言除了國家官方語言,還有地區官方語言,比如少數民族地區地方政府,會把本地主要族群語言和國家官方語言作為行政地區官方語言。
有些国家只有一个官方语言,比如德国及法国;有些国家有數个官方语言,比如印度;有些国家没有法定正式官方语言,比如中國、美国、日本(但仍有國家將日語定為官方語言:帛琉,也是唯一將日語定為官方語言的國家)。美国有30个州将英语定为官方语言,但美国联邦法律中并没有规定官方语言。不过,因为美国宪法等重要法律是用英语写成,因此英语实际上(de facto)是官方语言。在一些国家的某些地区(比如中国大陸的民族自治地方),一些少数民族语言也是官方语言。
参看
- 官方文字
- 官方译名
- 國家語言
- 官方语言列表
- 各国官方语言列表
參考文獻
.mw-parser-output .refbegin{font-size:90%;margin-bottom:0.5em}.mw-parser-output .refbegin-hanging-indents>ul{list-style-type:none;margin-left:0}.mw-parser-output .refbegin-hanging-indents>ul>li,.mw-parser-output .refbegin-hanging-indents>dl>dd{margin-left:0;padding-left:3.2em;text-indent:-3.2em;list-style:none}.mw-parser-output .refbegin-100{font-size:100%}
Writing Systems of the World: Alphabets, Syllabaries, Pictograms (1990), ISBN 0-8048-1654-9 — lists official languages of the countries of the world, among other information.
- "Official Language", Concise Oxford Companion to the English Language, Ed. Tom McArthur, Oxford University Press, 1998.
外部連結
 |
參見維基數據有有關P37的屬性,官方语言(參見用法) |
 |
维基语录上的相关摘錄: 官方语言
|
Languages by country in The World Factbook
7o,h aretxjA 2
Popular posts from this blog
提示 :本条目的主题不是 香港中文大學(深圳) 。 body.skin-minerva .mw-parser-output table.infobox caption{text-align:center} 香港中文大學 The Chinese University of Hong Kong 校训 博文約禮 [1] [2] 创建时间 1963年10月17日 学校类型 法定(公立)、研究型 監督 主權移交前:英屬香港總督 主權移交後:香港特別行政區行政長官 校董會主席 梁乃鵬博士 校長 段崇智教授 副校长 華雲生教授(常務副校長) 霍泰輝教授、吳基培教授 張妙清教授、潘偉賢教授 陳偉儀教授、吳樹培先生 教师人數 1,619 [3] 学生人數 25,489 [3] 本科生人數 20,147 [3] 研究生人數 5,342 [3] 校址 香港新界沙田馬料水沙田市地段437號(大埔公路十一至十二咪左右(正門及崇基門) 22°25′10″N 114°12′19″E / 22.41946°N 114.205358°E / 22.41946; 114.205358 坐标: 22°25′10″N 114°12′19″E / 22.41946°N 114.205358°E / 22.41946; 114.205358 科學園路與澤祥街交界(東校門) 澤祥街18號(沙田凱悅酒店及工商管理學院)) 校區 新市鎮 总面积 134.4公頃(1,344,000平方米) [2] 代表色 紫與金 [1] 吉祥物 鳳凰 [1] 隶属 英聯邦大學協會 國際商管學院促進協會(AACSB) 東南亞高等教育協會 ( 英语 : ASAIHL ) 國際大學協會 亚太高校书院联盟 八大公立大學聯盟(譯自:HK8)[3] 网站 http://www.cuhk.edu.hk/ 香港中文大學 ( 英语: The Chinese University of Hong Kong ,縮寫为 CUHK ),簡稱 中文大學 、 中大...
10
1
I have a function that searches a vector of iterators and returns the iterator if its names matches a string passed as an argument. koalaGraph::PVertex lookUpByName(std::string Name, std::vector<koalaGraph::PVertex>& Vertices) { for (size_t i = 0; i < Vertices.size(); i++) { if(Vertices[i]->info.name == Name) return Vertices[i]; } } My question is how can I implement this as a lambda, to use it in connection with std::find_if ? I'm trying this: std::vector<koalaGraph::PVertex> V; std::string Name; std::find_if(V.begin(), V.end(), [&Name]() {return Name == V->info.name;}) But it says that V an enclosing-function local variable cannot be referenced in a lambda body unless it is in the capture list.
...
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
4
1
I am installing hackintosh in virtualbox on ubuntu, but when I try to start, I get above error. Here are some more details, Result Code: NS_ERROR_FAILURE (0x80004005) Component: ConsoleWrap Interface: IConsole {872da645-4a9b-1727-bee2-5585105b9eed} How can I solve this issue?
16.04 virtualbox
share | improve this question
asked Oct 22 '17 at 15:10
luv.preet luv.preet
1,502 4 13 29
...