亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? compiledb.txt

?? Thinking in C++ 2.0書籍源碼光盤
?? TXT
字號:
#: :CompileDB.txt
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
# Compiler information listings for Thinking in 
# C++ 2nd Edition By Bruce Eckel. See copyright 
# notice in Copyright.txt.
# This is used by ExtractCode.cpp to generate the
# makefiles for the book, including the command-
# line flags for each vendor's compiler and 
# linker. Following that are the code listings 
# from the book that will not compile for each 
# compiler. The listings are, to the best of my 
# knowledge, correct Standard C++ (According to 
# the Final Draft International Standard). Please
# note that the tests were performed with the 
# most recent compiler that I had at the time, 
# and may have changed since this file was 
# created.
# After ExtractCode.cpp creates the makefiles
# for each chapter subdirectory, you can say 
# "make egcs", for example, and all the programs
# that will successfully compile with egcs will
# be built.
#################################################
# Compiling all files, for a (theoretical) fully-
# conformant compiler. This assumes a typical
# compiler under dos:
{ all }
# Object file name extension in parentheses:
(obj)
# Executable file extension in square brackets:
[exe]
# The leading '&' is for special directives. The
# dos directive means to replace '/' 
# with '\' in all directory paths:
&dos
# The following lines will be inserted directly
# into the makefile (sans the leading '@' sign)
# If your environment variables are set to 
# establish these you won't need to use arguments
# on the make command line to set them:
# CPP: the name of your C++ compiler
# CPPFLAGS: Compilation flags for your compiler
# OFLAG: flag to give the final executable name
#@CPP = yourcompiler
#@CPPFLAGS =
#@OFLAG = -e
@.SUFFIXES : .obj .cpp .c
@.cpp.obj :
@   $(CPP) $(CPPFLAGS) -c $<
@.c.obj :
@   $(CPP) $(CPPFLAGS) -c $<
# Assumes all files will compile
# See later for an example of Unix configuration
#################################################
# Borland C++ Builder 4 -- With Upgrade!!!
# Target name used in makefile:
{ Borland }
# Object file name extension in parentheses:
(obj)
# Executable file extension in square brackets:
[exe]
# The leading '&' is for special directives. The
# dos directive means to replace '/' 
# with '\' in all directory paths:
&dos
# Inserted directly into the makefile (without
# the leading '@' sign):
@# Note: this requires the upgrade from 
@# www.Borland.com for successful compilation!
@CPP = Bcc32
@CPPFLAGS = -w-inl -w-csu -wnak	
@OFLAG = -e
@.SUFFIXES : .obj .cpp .c
@.cpp.obj :
@   $(CPP) $(CPPFLAGS) -c $<
@.c.obj :
@   $(CPP) $(CPPFLAGS) -c $<
# Doesn't support static const 
# array initialization:
C10:StaticArray.cpp 
# Problem with string constructors at run-time:
C17:ICompare.cpp
# Template bug:
C19:ArraySize.cpp
# Not sure:
C20:AssocInserter.cpp
# Bitset is Broken in this compiler's library:
C20:BitSet.cpp
# Standard Library problem:
C21:SearchReplace.cpp
# Function-level try blocks not implemented:
C23:FunctionTryBlock.cpp
# Uses the SGI STL extensions, so it actually 
# isn't supposed to compile with this 
# compiler:
C20:MapVsHashMap.cpp
C21:MemFun4.cpp
C21:Compose2.cpp
#################################################
# Visual C++ 6.0 -- With Service Pack 3!!!
# Target name used in makefile:
{ Microsoft }
# Object file name extension in parentheses:
(obj)
# Executable file extension in square brackets:
[exe]
# The leading '&' is for special directives. The
# dos directive means to replace '/' 
# with '\' in all directory paths:
&dos
# Inserted directly into the makefile (without
# the leading '@' sign):
@# Note: this requires the service Pack 3 from 
@# www.Microsoft.com for successful compilation!
@CPP = cl
@CPPFLAGS = -GX -GR
@OFLAG = -o
@.SUFFIXES : .obj .cpp .c
@.cpp.obj :
@   $(CPP) $(CPPFLAGS) -c $<
@.c.obj :
@   $(CPP) $(CPPFLAGS) -c $<
C02:Incident.cpp
# It can't even handle multiple "for(int i =...:"
# statements in the same scope (a really old
# language feature!):
C02:Intvector.cpp
C03:Assert.cpp
C07:MemTest.cpp
C09:Cpptime.cpp
C12:Comma.cpp
C13:GlobalNew.cpp
# Common problem with namespaces and C libraries:
C17:ICompare.cpp
C18:FileClassTest.cpp
C18:Datagen.cpp
C18:Datascan.cpp
# Can't do template type induction properly:
C19:ArraySize.cpp
# Doesn't know about template-templates:
C19:TemplateTemplate.cpp
C19:applyGromit2.cpp
# Can't do template specializations:
C19:Sorted.cpp
# Can't do explicit template instantiation:
C19:ExplicitInstantiation.cpp
# Missing part of iostreams:
C20:StreamIt.cpp
# Problem with STL:
C20:BasicSequenceOperations.cpp
C20:VectorCoreDump.cpp
C20:DequeConversion.cpp
C20:Stack2.cpp
# Problem with static class initializer:
C20:BankTeller.cpp
# Missing STL functionality:
C20:VectorOfBool.cpp
# STL problem:
C20:AssocInserter.cpp
# Various problems:
C20:WildLifeMonitor.cpp
C20:MultiSet1.cpp
C20:Thesaurus.cpp
# These use the SGI STL extensions, so they 
# actually aren't supposed to compile 
# with this compiler:
C20:MapVsHashMap.cpp
C21:Compose2.cpp
# Namespace problem again, and other issues:
C21:FunctionObjects.cpp
C21:Binder1.cpp
C21:Binder3.cpp
C21:Binder4.cpp
C21:RandGenTest.cpp
C21:MemFun1.cpp
C21:MemFun2.cpp
C21:FindBlanks.cpp
C21:MemFun3.cpp
C21:MemFun4.cpp
C21:FillGenerateTest.cpp
C21:Counting.cpp
C21:Manipulations.cpp
C21:SearchReplace.cpp
C21:Comparison.cpp
C21:Removing.cpp
C21:SortTest.cpp
C21:SortedSearchTest.cpp
C21:MergeTest.cpp
C21:SetOperations.cpp
C21:ForEach.cpp
C21:Transform.cpp
C21:CalcInventory.cpp
C21:TransformNames.cpp
C21:SpecialList.cpp
C21:NumericTest.cpp
# Most compilers don't support this yet:
C23:FunctionTryBlock.cpp
# Lack of support for 'static const' again:
C25:Recycle2.cpp
C26:ExtractCode.cpp
C26:MemTest.cpp
# All these do not compile only becase of the
# lack of support for 'static const'. To make
# them compile, you must substitute the
# 'enum hack' shown in chapter 8:
C08:StringStack.cpp 
C08:Quoter.cpp
C08:Volatile.cpp
C10:StaticArray.cpp 
C11:HowMany2.cpp 
C11:Autocc.cpp 
C11:Pmem2.cpp 
C12:Smartp.cpp 
C12:Iosop.cpp 
C12:Copymem.cpp 
C12:Refcount.cpp 
C12:RefcountTrace.cpp 
C13:MallocClass.cpp 
C13:Framis.cpp 
C13:ArrayNew.cpp 
C14:FName1.cpp 
C14:FName2.cpp 
C16:IStack.cpp 
C16:Stemp.cpp 
C16:Stemp2.cpp 
C16:Stackt.cpp
C23:Cleanup.cpp
C24:Selfrtti.cpp 
C24:Reinterp.cpp
#################################################
# The egcs (Experimental g++ compiler) snapshot 
# under Linux, dated July 18, 1998
{ egcs }
(o)
[]
# The unix directive controls the way some of the
# makefile lines are generated:
&unix
@CPP = g++
@OFLAG = -o
@.SUFFIXES : .o .cpp .c
@.cpp.o :
@   $(CPP) $(CPPFLAGS) -c $<
@.c.o :
@   $(CPP) $(CPPFLAGS) -c $<
# Files that won't compile
# Error in streambuf.h:
C18:Cppcheck.cpp
# Not sure:
C19:applyGromit2.cpp
# Missing the standard library 'at()':
C19:Sorted.cpp
C19:ExplicitInstantiation.cpp
# Problem with the egcs iterator header
C20:StreambufIterator.cpp
C20:RawStorageIterator.cpp
# egcs is missing istreambuf_iterator
C20:WordList2.cpp
C20:TokenizeTest.cpp
C20:TokenIteratorTest.cpp
C20:WordCount.cpp
C20:MultiSetWordCount.cpp
# egcs is missing std::iterator:
C20:Ring.cpp
# egcs is missing char_traits
C17:ICompare.cpp
# egcs vector and deque (at least) are missing
# the "at()" functions:
C20:IndexingVsAt.cpp
# There's a problem with the egcs string class:
C17:Compare2.cpp
# Broken in this compiler's library:
C20:BitSet.cpp
# These are because <sstream> isn't implemented
C18:NumberPhotos.cpp
C19:stringConvTest.cpp
C20:StringVector.cpp
C20:FEditTest.cpp
C20:StringDeque.cpp
C20:VectorOfBool.cpp
C20:WildLifeMonitor.cpp
C21:SortTest.cpp
C21:SortedSearchTest.cpp
C21:Binder4.cpp 
C21:ForEach.cpp
# Problem in parsing PrintSequence.h:
C21:Counting.cpp
C21:Manipulations.cpp
C21:SearchReplace.cpp
C21:Comparison.cpp
C21:Removing.cpp
C21:CalcInventory.cpp
C21:TransformNames.cpp
C21:SpecialList.cpp
C21:NumericTest.cpp
# The end tag is required:
#///:~

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产欧美精品一区二区色综合| 欧美一区二区观看视频| 精品一区二区在线免费观看| 日日骚欧美日韩| 亚洲国产视频一区| 日韩精品免费视频人成| 亚洲午夜久久久| 视频一区二区中文字幕| 久久99精品网久久| 国产福利一区二区三区视频| 成人夜色视频网站在线观看| 成人动漫一区二区三区| 色综合网色综合| 欧美性视频一区二区三区| 欧美日韩午夜精品| 欧美一区二区三区成人| 久久免费国产精品| 亚洲女与黑人做爰| 日韩精品一卡二卡三卡四卡无卡| 极品少妇xxxx精品少妇| 成人免费视频caoporn| 在线免费不卡电影| 日韩欧美激情四射| 欧美激情在线免费观看| 亚洲最大的成人av| 精品一区二区日韩| 日本福利一区二区| 日韩一区二区三区三四区视频在线观看 | 精品国产在天天线2019| 国产亚洲成年网址在线观看| 亚洲私人影院在线观看| 日韩电影一区二区三区四区| 国产精品资源网| 在线亚洲人成电影网站色www| 日韩欧美综合一区| 自拍偷拍亚洲综合| 日本中文在线一区| 99久久精品免费| 欧美一区二区三区男人的天堂| 久久精品视频在线免费观看| 亚洲免费av高清| 久久精品av麻豆的观看方式| a4yy欧美一区二区三区| 欧美成人午夜电影| 一区二区在线看| 国产69精品久久久久毛片 | 欧美一区二区免费视频| 国产精品乱码妇女bbbb| 欧美a级一区二区| 色综合久久久久久久久久久| 久久天天做天天爱综合色| 亚洲国产视频在线| www.爱久久.com| 欧美大片一区二区三区| 亚洲一区av在线| 成人免费黄色在线| 久久色成人在线| 久久99精品国产麻豆不卡| 欧美日韩精品二区第二页| 亚洲欧美日韩一区二区三区在线观看 | 亚洲男人的天堂一区二区| 韩国女主播成人在线观看| 7777精品伊人久久久大香线蕉最新版 | 中文字幕精品在线不卡| 黄色精品一二区| 欧美www视频| 久久www免费人成看片高清| 欧美日韩精品一区二区三区四区| 中文字幕一区二区在线播放| 国产成a人无v码亚洲福利| 久久久777精品电影网影网| 韩国欧美国产1区| 久久日韩精品一区二区五区| 久久99日本精品| 久久精品视频免费| 国产成人av一区二区| 久久久久久99精品| 成人听书哪个软件好| 欧美激情一区二区在线| 丁香啪啪综合成人亚洲小说| 久久精品男人的天堂| 国产成人综合亚洲91猫咪| 欧美国产视频在线| 91丝袜呻吟高潮美腿白嫩在线观看| 中文字幕欧美日本乱码一线二线| 高清不卡一二三区| 亚洲欧洲性图库| 欧美中文一区二区三区| 日韩精品久久理论片| 日韩欧美一区在线| 久久91精品国产91久久小草| 久久亚洲春色中文字幕久久久| 国产精品18久久久久久久网站| 国产精品乱人伦中文| 欧美性猛交xxxx乱大交退制版| 亚洲电影视频在线| 精品国精品自拍自在线| 99久久精品免费看国产免费软件| 一区二区三区四区激情| 91精品免费在线观看| 国产黄人亚洲片| 亚洲在线免费播放| 欧美精品一区在线观看| 97久久精品人人澡人人爽| 日韩国产精品久久久久久亚洲| 久久久青草青青国产亚洲免观| 91美女片黄在线| 美女任你摸久久| 亚洲精品五月天| 亚洲精品一区二区三区香蕉| 色一区在线观看| 精品午夜一区二区三区在线观看| 国产精品卡一卡二卡三| 91麻豆精品国产自产在线观看一区| 国产一区二区三区免费观看| 亚洲男人的天堂在线aⅴ视频| 欧美电影免费观看高清完整版在 | 亚洲嫩草精品久久| 精品区一区二区| 欧美丝袜丝交足nylons图片| 国产精品一二三在| 免费在线观看视频一区| 国产精品国产三级国产aⅴ原创| 欧美日韩精品一区二区三区四区| 成人污污视频在线观看| 老司机免费视频一区二区| 一区二区三区四区在线播放| 6080午夜不卡| 色婷婷亚洲综合| a在线播放不卡| 国产精品66部| 99re成人在线| 国产成人a级片| 精品一区二区三区免费视频| 亚洲国产日日夜夜| 亚洲日本中文字幕区| 国产亚洲成年网址在线观看| 欧美精品一区二区精品网| 91精品在线麻豆| 欧美三级三级三级爽爽爽| 色婷婷综合久久久| 色综合婷婷久久| 色婷婷av一区二区三区gif| 99久久婷婷国产综合精品| 国v精品久久久网| 成人性生交大合| 成人免费观看av| 大白屁股一区二区视频| 成人黄色在线看| 国产99精品国产| 成人视屏免费看| 成人福利电影精品一区二区在线观看 | 欧美日韩国产小视频在线观看| 99精品视频一区| 97久久精品人人爽人人爽蜜臀| 99久久国产免费看| 色欧美乱欧美15图片| 欧美日韩一区二区三区视频| 欧美在线影院一区二区| 91国产成人在线| 91.麻豆视频| 精品美女在线播放| 国产色综合一区| 国产精品久久久99| 亚洲私人黄色宅男| 亚洲电影激情视频网站| 免费观看日韩电影| 精品一区二区三区在线视频| 国产美女精品一区二区三区| 成人免费毛片a| 欧美图片一区二区三区| 51午夜精品国产| 久久久久久亚洲综合| 中文字幕一区二| 首页国产丝袜综合| 国产毛片精品视频| 91免费视频网| 欧美老女人第四色| 久久婷婷国产综合国色天香| 国产精品美日韩| 丝袜美腿亚洲色图| 国产一区二区不卡在线| 色婷婷av一区| 欧美哺乳videos| 亚洲少妇中出一区| 免费观看91视频大全| 成人午夜av影视| 91麻豆精品国产无毒不卡在线观看 | 免费欧美日韩国产三级电影| 国产91丝袜在线播放九色| 欧美日免费三级在线| 精品91自产拍在线观看一区| 国产精品亲子乱子伦xxxx裸| 亚洲香蕉伊在人在线观| 国产米奇在线777精品观看| 在线观看免费视频综合| 日本一区二区成人| 奇米亚洲午夜久久精品| 色综合久久六月婷婷中文字幕| 日韩精品一区二区三区视频|