- 2012-05-19
- #92330 | 2012-05-19 05:27:17, *0 | <nolyc@#c++> Standard C++ IOStreams and Locales: Advanced Programmer's Guide and Reference by Angelika Langer and Klaus Kreft, ISBN: 0201183951, http://...
- #92324 | 2012-05-19 05:08:43, *0 | <nolyc@#c++>
- #92244 | 2012-05-19 00:09:30, *0 | <nolyc@#c++> C++1x container choice: http://...
- 2012-05-18
- #92092 | 2012-05-18 16:05:38, *0 | <nolyc@#c++> GeorgeJ: ppp is Programming: Principles and Practice Using C++ by Bjarne Stroustrup. See http://...
- #91986 | 2012-05-18 10:31:56, *0 | <nolyc@#c++>
- #91970 | 2012-05-18 10:16:35, *0 | <nolyc@#c++> wiki is http://...
- #91927 | 2012-05-18 06:52:15, *0 | <nolyc@#c++>
- #91906 | 2012-05-18 05:17:14, *0 | <nolyc@#c++>
- #91893 | 2012-05-18 04:33:07, *0 | <nolyc@#c++> Choom: http://...
- #91891 | 2012-05-18 04:27:40, *0 | <nolyc@#c++> The Liskov Substitution Principle: <http://...>; The Dependency Inversion Principle: <http://www.objectmentor.com/resources/articles/dip.pdf>; Some Object-Oriented Design Principles: <http://userpages.umbc.edu/~tarr/dp/lectures/OOPrinciples-2pp.pdf>; Liskov substitution principle - Wikipedia, the free encyclopedia: (1 more message)
- #91882 | 2012-05-18 04:02:41, *1 | <nolyc@#c++> In section 3.6.1 paragraph 2, the standard states with regard to main: `It shall have a return type of type int'. While your compiler may accept other return types as a language extension, anything but int is illegal as far as the standard (and by extension, ##c++) is concerned. Also see http://...#void-main
- #91834 | 2012-05-18 01:17:52, *0 | <nolyc@#c++> zimbres: POD is http://... . Scalar types (see !scalar), POD-struct types (see !podstruct), POD-union types, arrays of such types and cv-qualified versions of these types are collectively called POD types. The acronym POD stands for `plain old data.'
- 2012-05-17
- #91776 | 2012-05-17 21:28:07, *1 | <nolyc@#c++> See http://...#disambiguation for reasons to use the typename keyword
- #91426 | 2012-05-17 00:52:01, *0 | <nolyc@#c++> Argument Dependent Lookup used to be referred to as Koenig lookup . http://...
- 2012-05-16
- #91320 | 2012-05-16 18:32:00, *0 | <nolyc@#c++>
- #91169 | 2012-05-16 10:11:15, *0 | <nolyc@#c++> <http://...> (at stackoverflow.com)
- #91073 | 2012-05-16 03:47:55, *0 | <nolyc@#c++> ApEk: Pacific Laser Systems manufactures hand-held, self-levelling, laser alignment tools for contractors. http://...
- #91069 | 2012-05-16 03:38:39, *0 | <nolyc@#c++> BreadMonster: http://...
- #91038 | 2012-05-16 01:54:59, *0 | <nolyc@#c++> <http://...> (at webcache.googleusercontent.com)
- #90995 | 2012-05-16 00:10:26, *0 | <nolyc@#c++> <http://...> (at stackoverflow.com)
- 2012-05-15
- #90900 | 2012-05-15 17:53:07, *1 | <nolyc@#c++> <http://...> (at stackoverflow.com)
- #90867 | 2012-05-15 16:20:43, *0 | <nolyc@#c++> <http://...> (at stackoverflow.com)
- #90838 | 2012-05-15 15:29:53, *1 | <nolyc@#c++> Using "while (!stream.eof()) {}" is almost certainly wrong. Use the stream's state as the tested value instead: while (std::getline(stream, str)) {}. For further explanation see http://...#faq-15.5
- #90654 | 2012-05-15 07:03:38, *0 | <nolyc@#c++> mordy_: http://...#idx390
- #90582 | 2012-05-15 03:47:43, *0 | <nolyc@#c++> sacrebleu: http://...
- 2012-05-14
- #90519 | 2012-05-14 23:12:19, *0 | <nolyc@#c++> jehe: OpenGL weird problem - CodeGuru Forums: <http://...>; c++ - fatal error LNK1120: 1 unresolved externals - Stack Overflow: <http://stackoverflow.com/questions/6515271/fatal-error-lnk1120-1-unresolved-externals>; C++ Fatal Error LNK1120: 1 unresolved externals - Stack Overflow: <http://stackoverflow.com/questions/7410798/c-fatal-error-lnk1120-1-unresolved- (1 more message)
- #90486 | 2012-05-14 21:24:41, *0 | <nolyc@#c++> ender456: Read A fuсking Book - Your primary guide for learning C++ should be a good book (see http://...#books). You must not expect to become a proficient C++ programmer just from reading crappy online `tuts', staring at other people's code, and/or boring us to death by asking dozens of exceedingly trivial questions.
- #90218 | 2012-05-14 06:12:45, *0 | <nolyc@#c++>
- #90142 | 2012-05-14 01:49:24, *0 | <nolyc@#c++> _The C++ Programming Language_ by Bjarne Stroustrup. If you keep no other book, keep this one. http://...
- #90141 | 2012-05-14 01:47:44, *0 | <nolyc@#c++> _C++ Primer: 4th Edition_ by Lippman, Lajoie, and Moo. A good beginner book if you want something more traditional than !AC++ http://... Not to be confused with the terrible and unrelated _C++ Primer Plus_
- 2012-05-13
- #90110 | 2012-05-13 23:22:42, *0 | <nolyc@#c++> <http://...> (at www.gamedev.net)
- (图) #89981 | 2012-05-13 14:06:59, *2 | <nolyc@#c++> C++ syntax is easy - just memorize http://... and you'll be fine!
- #89953 | 2012-05-13 12:45:29, *0 | <nolyc@#c++> Boost.Asio is a cross-platform C++ library for network and low-level I/O programming that provides developers with a consistent asynchronous model using a modern C++ approach. http://...
- #89926 | 2012-05-13 09:22:01, *0 | <nolyc@#c++> <http://...> (at achuwilson.wordpress.com)
- #89886 | 2012-05-13 06:42:45, *0 | <nolyc@#c++> The C++ standardization committee is now soliciting proposals for a second technical report on standard library extensions. How to prepare proposals: http://...
- #89860 | 2012-05-13 04:38:46, *0 | <nolyc@#c++> c++0x is an informal name for the upcoming revision of the ISO C++ Standard. The ISO C++ Committee is aiming for 2010. Overview of the upcoming features: http://... or http://www.research.att.com/~bs/C++0xFAQ.html
- 2012-05-12
- #89783 | 2012-05-12 23:36:15, *0 | <nolyc@#c++> bamdad: Freely available resources for learning the basics of C++: http://... and http://stackoverflow.com/questions/194812/list-of-freely-available-programming-books and http://jcatki.no-ip.org/fncpp/Resources and http://cppreference.com/ and http://learncpp.com/
- #89781 | 2012-05-12 23:31:11, *1 | <nolyc@#c++> bamdad: Accelerated C++: Practical Programming by Example. Andrew Koenig and Barbara Moo. Addison-Wesley, 2000. ISBN 0-201-70353-X. http://...
- #89721 | 2012-05-12 19:23:56, *0 | <nolyc@#c++> <http://...> (at stackoverflow.com)
- #89644 | 2012-05-12 13:50:44, *0 | <nolyc@#c++> Intraday: Contrary to popular nonsense, basic operations on vectors don't have to be slower than equivalent operations on arrays/pointers, see http://...
- #89629 | 2012-05-12 13:07:50, *0 | <nolyc@#c++> banshee21: http://...
- #89449 | 2012-05-12 03:20:43, *0 | <nolyc@#c++> milosz: http://...
- 2012-05-11
- #89381 | 2012-05-11 23:38:21, *0 | <nolyc@#c++> Vinnie_win: http://...
- #89338 | 2012-05-11 21:56:12, *1 | <nolyc@#c++>
- #89232 | 2012-05-11 16:41:36, *0 | <nolyc@#c++> Starfire: http://...
- #89034 | 2012-05-11 03:58:10, *0 | <nolyc@#c++> IndianaRonaldo: http://...
- #89025 | 2012-05-11 03:42:03, *1 | <nolyc@#c++> http://... and http://www.parashift.com/c++-faq-lite/misc-technical-issues.html#faq-39.11
- 2012-05-10
- #88937 | 2012-05-10 22:35:14, *1 | <nolyc@#c++> A demonstration of the expressive power of operator overloading can be found at http://...
- #88773 | 2012-05-10 13:45:22, *0 | <nolyc@#c++> http://...#channelrules
- #88745 | 2012-05-10 12:05:06, *0 | <nolyc@#c++>
最近八卦大师排名前 20
历史八卦大师排名前 10
最近最活跃房间前 20
历史最活跃房间前 10
- #python*105,254
- ##php*66,221
- #ubuntu-cn*53,833
- #linuxfire*53,477
- ##c++*36,473
- ##c*27,624
- #TLF_FILES*18,030
- #bitcoin*16,176
- #kde-cn*4,693
- #lighttpd*4,606