# [1] 復制許可
## FAQs in section [1]:
* [1.1] 作者
* [1.2] 版權布告
* [1.3] 復制許可
* [1.4] 免責事項
* [1.5] 商標
* [1.6] _C++-FAQ-Lite_ != _C++-FAQ-Book_
## 1.1 作者
[Marshall Cline](http://www.parashift.com/)
[cline@parashift.com](mailto:cline@parashift.com)
(簡體中文版翻譯:[申旻](http://www.sunistudio.com/nicrosoft)
[nicrosoft@sunistudio.com](mailto:nicrosoft@sunistudio.com))
## 1.2 版權布告
原文:
The entire _C++ FAQ Lite_ document is Copyright?? 1991-2000 Marshall P. Cline, Ph.D..
譯文:
The entire _C++ FAQ Lite_ document is Copyright?? 1991-2000 Marshall P. Cline, Ph.D.允許復制。
譯注:上述譯文,僅供參考,一切請以原文為準。譯者對它們亦概不負責。
## 1.3 復制許可
原文:
If all you want to do is quote a small portion of _C++ FAQ Lite_ (such as one or two FAQs) in a larger document, simply attribute the quoted portion with something vaguely similar to, "From Marshall Cline's _C++ FAQ Lite_ document, [`www.parashift.com/c++-faq-lite/`](http://www.parashift.com/c++-faq-lite/)".
If you want to make a copy of large portions and/or the entire _C++ FAQ Lite_ document for your own personal use, you may do so without restriction (provided, of course, that you don't redistribute the document to others, or allow others to copy the document).
If you want to redistribute large portions and/or the entire _C++ FAQ Lite_ document to others, whether or not for commercial use, you must get permission from the author first (and that permission is normally granted; note however that it's often easier for you to simply tell your recipients about the one-click download option). In any event, all copies you make must retain verbatim and display conspicuously all the following: all copyright notices, the Author section, the Copyright Notice section, the No Warranty section, the _C++-FAQ-Lite_ != _C++-FAQ-Book_ section, and the Copy Permissions section.
If you want more and/or different privileges than are outlined here, please contact me, [cline@parashift.com](mailto:cline@parashift.com). I'm a very reasonable man...
譯文:
如果你只是在一個大文檔中引用_C++ FAQ Lite_的一小部分(如一個或兩個FAQ),那么只需要類似這樣表明即可:"From Marshall Cline's _C++ FAQ Lite_ document, [`www.parashift.com/c++-faq-lite/`](http://www.parashift.com/c++-faq-lite/)"。
如果你想將大部分和/或整個_C++ FAQ Lite_文檔為你自己所用,那么沒有限制(當然,你不能再分發此文檔給別人,不允許其他人拷貝此文檔)。
如果你要在分發大部分和/或C++ FAQ Lite文檔給別人,那么無論是否用于商業用途,你必須首先得到作者的準許(一般情況下,授權會被許可;然而注意,對你來說可能簡單地告訴收件人單擊下載更容易)。在任何情況下,你必須保持完整并且顯著地顯示如下所有:所有版權聲明,作者部分,版權布告部分,免責事項部分,_C++-FAQ-Lite_ != _C++-FAQ-Book_部分和復制許可部分。
如果你想要比以上所列的更多的和/或特殊的權利,請聯系我,[cline@parashift.com](mailto:cline@parashift.com)。我是通情達理之人……
譯注:上述譯文,僅供參考,一切請以原文為準。譯者對它們亦概不負責。
## 1.4 免責事項
THIS WORK IS PROVIDED ON AN "AS IS" BASIS. THE AUTHOR PROVIDES NO WARRANTY WHATSOEVER, EITHER EXPRESS OR IMPLIED, REGARDING THE WORK, INCLUDING WARRANTIES WITH RESPECT TO ITS MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE.
## 1.5 商標
* Java is a trademark of Sun Microsystems, Inc. in the United States and other countries.
* All other trademarks are the property of their respective owners.
## 1.6 _C++-FAQ-Lite_ != _C++-FAQ-Book_
這份 _C++ FAQ Lite_ 文檔和 _C++ FAQ Book_ 不一樣。該書(C++ FAQ,第二版,Cline,Lomow,and Girou,Addison-Wesley)比這份文檔大 500%,并且書店有售。細節請察看[3]。
- C++ FAQ Lite
- [1] 復制許可
- [2] 在線站點分發本文檔
- [3] C++-FAQ-Book 與 C++-FAQ-Lite
- [6] 綜述
- [7] 類和對象
- [8] 引用
- [9] 內聯函數
- [10] 構造函數
- [11] 析構函數
- [12] 賦值算符
- [13] 運算符重載
- [14] 友元
- [15] 通過 <iostream> 和 <cstdio>輸入/輸出
- [16] 自由存儲(Freestore)管理
- [17] 異常和錯誤處理
- [18] const正確性
- [19] 繼承 — 基礎
- [20] 繼承 — 虛函數
- [21] 繼承 — 適當的繼承和可置換性
- [22] 繼承 — 抽象基類(ABCs)
- [23] 繼承 — 你所不知道的
- [24] 繼承 — 私有繼承和保護繼承
- [27] 編碼規范
- [28] 學習OO/C++
- [31] 引用與值的語義
- [32] 如何混合C和C++編程
- [33] 成員函數指針
- [35] 模板 ?
- [36] 序列化與反序列化
- [37] 類庫