C++参考的翻译或校对

2016-02-07 22:28:52 +08:00
 wizardforcel
做新年规划的时候,我说过要翻译 C++常用类的参考。 C++的参考,其实别人已经翻译完了,只是部分内容需要校对。由于网站结构中大量使用了模板,同一个函数只需要翻译一个地方,所以四天就弄完了。而且我没有翻译函数层级的页面,所以比较快。

C++的参考其实最需要翻译。因为 C++为了填 C 继承过来的坑,标准库增加了很多用于替代的设施。而国内的教程更新缓慢,这份参考如果不翻译,我估计到了 2020 年也不会完全普及。

以下是校对完成的类,希望大家继续参与:

+ [`<memory>`]( http://zh.cppreference.com/w/cpp/memory)
+ [`unique_ptr`]( http://zh.cppreference.com/w/cpp/memory/unique_ptr)
+ [`shared_ptr`]( http://zh.cppreference.com/w/cpp/memory/shared_ptr)
+ [`weak_ptr`]( http://zh.cppreference.com/w/cpp/memory/weak_ptr)
+ [`<chrono>`]( http://zh.cppreference.com/w/cpp/chrono)
+ [`duration`]( http://zh.cppreference.com/w/cpp/chrono/duration)
+ [`<functional>`]( http://zh.cppreference.com/w/cpp/utility/functional)
+ [`function`]( http://zh.cppreference.com/w/cpp/utility/functional/function)
+ `<utility>`
+ [`pair`]( http://zh.cppreference.com/w/cpp/utility/pair)
+ [`tuple`]( http://zh.cppreference.com/w/cpp/utility/tuple)
+ 字符串
+ [`basic_string`]( http://zh.cppreference.com/w/cpp/string/basic_string)
+ [Null 结尾的单字节字符串]( http://zh.cppreference.com/w/cpp/string/byte)
+ [Null 结尾的多字节字符串]( http://zh.cppreference.com/w/cpp/string/multibyte)
+ [Null 结尾的宽字符串]( http://zh.cppreference.com/w/cpp/string/wide)
+ 容器
+ [`array`]( http://zh.cppreference.com/w/cpp/container/array)
+ [`vector`]( http://zh.cppreference.com/w/cpp/container/vector)
+ [`deque`]( http://zh.cppreference.com/w/cpp/container/deque)
+ [`list`]( http://zh.cppreference.com/w/cpp/container/list)
+ [`forward_list`]( http://zh.cppreference.com/w/cpp/container/forward_list)
+ [`set`]( http://zh.cppreference.com/w/cpp/container/set)
+ [`multiset`]( http://zh.cppreference.com/w/cpp/container/multiset)
+ [`map`]( http://zh.cppreference.com/w/cpp/container/map)
+ [`multimap`]( http://zh.cppreference.com/w/cpp/container/multimap)
+ [`unordered_set`]( http://zh.cppreference.com/w/cpp/container/unordered_set)
+ [`unordered_multiset`]( http://zh.cppreference.com/w/cpp/container/unordered_multiset)
+ [`unordered_map`]( http://zh.cppreference.com/w/cpp/container/unordered_map)
+ [`unordered_multimap`]( http://zh.cppreference.com/w/cpp/container/unordered_multimap)
+ [`stack`]( http://zh.cppreference.com/w/cpp/container/stack)
+ [`queue`]( http://zh.cppreference.com/w/cpp/container/queue)
+ [`priority_queue`]( http://zh.cppreference.com/w/cpp/container/priority_queue)
+ [`bitset`]( http://zh.cppreference.com/w/cpp/utility/bitset)
+ I/O
+ [`ios_base`]( http://zh.cppreference.com/w/cpp/io/ios_base)
+ [`basic_ios`]( http://zh.cppreference.com/w/cpp/io/basic_ios)
+ [`basic_istream`]( http://zh.cppreference.com/w/cpp/io/basic_istream)
+ [`basic_ostream`]( http://zh.cppreference.com/w/cpp/io/basic_ostream)
+ [`basic_iostream`]( http://zh.cppreference.com/w/cpp/io/basic_iostream)
+ [`basic_ifstream`]( http://zh.cppreference.com/w/cpp/io/basic_ifstream)
+ [`basic_ofstream`]( http://zh.cppreference.com/w/cpp/io/basic_ofstream)
+ [`basic_fstream`]( http://zh.cppreference.com/w/cpp/io/basic_fstream)
+ [`basic_istringstream`]( http://zh.cppreference.com/w/cpp/io/basic_istringstream)
+ [`basic_ostringstream`]( http://zh.cppreference.com/w/cpp/io/basic_ostringstream)
+ [`basic_stringstream`]( http://zh.cppreference.com/w/cpp/io/basic_stringstream)
+ [`<regex>`]( http://zh.cppreference.com/w/cpp/regex)
+ [`basic_regex`]( http://zh.cppreference.com/w/cpp/regex/basic_regex)
+ [`match_results`]( http://zh.cppreference.com/w/cpp/regex/match_results)
+ [`<atomic>`]( http://zh.cppreference.com/w/cpp/atomic)
+ [数值库]( http://zh.cppreference.com/w/cpp/numeric)
+ [`ratio`]( http://zh.cppreference.com/w/cpp/numeric/ratio/ratio)
+ [`<cmath>`]( http://zh.cppreference.com/w/cpp/numeric/math)
+ [`complex`]( http://zh.cppreference.com/w/cpp/numeric/complex)
+ [`valarray`]( http://zh.cppreference.com/w/cpp/numeric/valarray)
+ [迭代器库]( http://zh.cppreference.com/w/cpp/iterator)
+ [算法库]( http://zh.cppreference.com/w/cpp/algorithm)

[我的贡献列表]( http://zh.cppreference.com/w/Special:%E7%94%A8%E6%88%B7%E8%B4%A1%E7%8C%AE/Wizardforcel)
4568 次点击
所在节点    分享创造
9 条回复
skydiver
2016-02-07 22:33:08 +08:00
支持翻译

但是我还是坚持看英文版
ybjaychou
2016-02-08 00:53:08 +08:00
感谢翻译
htfy96
2016-02-08 08:50:19 +08:00
楼主辛苦了 原来的机翻根本不能看
zado
2016-02-08 20:12:09 +08:00
感谢翻译!
newkedison
2016-02-08 21:35:07 +08:00
感谢辛勤劳动,不过还是建议看英文的好
shyling
2016-02-14 13:34:33 +08:00
好棒\^O^/
hqs123
2016-02-18 14:49:34 +08:00
非常不错,多谢分享
macrosea
2016-04-13 10:38:16 +08:00
very very good.
提个建议: 一些 C++关键字不要翻译.比如在首页:
容器库
数组 ( C++11 )
向量 − 双向队列
列表 − 单向列表 ( C++11 )
集合 − 多重集合
映射 − 多重映射

===>
容器库
array ( C++11 )
deque − 双向队列
wizardforcel
2016-06-25 09:10:09 +08:00
@macrosea 那个不是我改的,而且你可以自己提交。

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/255781

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX