ªá¤§¼y¦¸ 2006-11-26 14:05
¦ó¿×¥¨¶°±ø¥ó«ü¥O??
¥H¤Uªº¨âÓ¥¨¶°±ø¥ó«ü¥O¬°¦ó¤£¯à¦bDev-C++°õ¦æ:
#include<iostream>
#inclue<stdlib.h>
#include "pc.cc" // ¥[¤J¦P¥Ø¿ýªºpc.ccÀɮפº®e
using namespace std;
int main()
{
int i=5;
#ifndef MY_PC
#define MY_PC
i=7;
#endif
cout << i << '\n';
#ifndef MY_PC
#define MY_PC
i=3;
#endif
cout << i << endl;
system("pause");
return 0;
}
·Q½Ð°Ý¤@¤U¦³Ãö¥¨¶°±ø¥ó«ü¥O¹ï©óµ{¦¡³]p¦³¦ó¥Î³B??³o¼Ë¼g¤£¬O¦n¶Ü??
int main()
{
int i=5;
i=7;
cout << i << '\n';
i=3;
cout << i << endl;
return 0;
}
hhl 2006-11-27 10:17
º¥ýøª¾ÂI¸Ñ«Ydev-cpp °õ¦æ, ½Ðpost ®Id error ¦Pwarning message o¾¤Ú»¤U.
¥¨¶°¬O«D±`¦³¥Îªº, ¥ýnª¾¹D¥¨¶°¬O¤°»ò, ¥¦¬O¦bcompile time ªº®ÉÔ´N¨M©w¨º¤@¥ycode ncompile, ¨º¤@¥y¤£¥Îcompile, ¨ú¨M©ó§AÂI¼Ëset Ómacro. ¦Ó³oÓ¤èªk¦P§A¥Î"if ... else" «Y¦³¤À§O, ¤À§O¦b©ó¤@Ó«Ycompile time ´N¨M©w¦æÃä¤@¥y, ¥t¤@Ó´N«Yrun time. compile time ¥h¨M©w´N§Q¥Î¥¨¶°, ³o¼Ë¦³¥H¤U¦n³B:
1. ¤£¦Pª©¥»³B²z/µo©ñ:
Á|Ó¨Ò, ·í§Anµ¹«È¤H§Aªºµ{¦¡®É, §A·|¦³¼w°ê«È¤H, ¬ü°ê«È¤H, ·ç¨å«È¤H, ¥LÌnªº»y¨¥¬O¤j¤£¦Pªº, ¨º§A¥i¥H¥Î¤£¦Pcompile macro definition ¥hbuild ¤£¦Pªºª©¥»µ¹«È¤H, ¦Ó¥L̪ºbuild ùرµ´¹ï¤£·|¦³¨ä¥Lª©¥»ªº²ª¸ñ. build ¥X¨Óªºµ{¦¡size ¥ç¤£·|«Ü¤j, ¦]¬°compiler ¥u·|compile Ãö©óoӺػy¨¥ªºcode. e.g.
#ifdef _BUILD_GERMAN
printf("Aaa");
#elseif _BUILD_USA
printf("Bbb");
#elseif _BUILD_SWZLAND
printf("Ccc");
#endif
2. ¤£¦Pos platform
¦bÁ|Ó¨Ò¤l, ·í§Aªºbuild n«Yhardware ©ÎªÌ os dependent, ËÝ¥i¯àinteger «Ylinux «Y1 byte, ¦ý«Ywindows «Y2byte ËÝ°Õ, §A·|¥Îmacro ¥h¤À:
#ifdef _OS_WINDOWS_
typedef u_16 int
#elseif _OS_LINUX_
typedef u_8 int
#endif
·íµM, ¹ê»Ú±¡ªpø«Y1byte ¦P2byte °Õ ... ¦ýËݼ˴N¥i¥H°µ¨ì§Aªºbuild ¥i¥Hcross platform Ëݦæ, ¥un§Acompile ªº®ÉÔdefine ø¦Pmacro ´N±o
¥ò¦³¦n¦h¨Ò¤lÃö©ó¥Îmacro °µcross platform ¬[, ¨Ò¦p§A¦æsemphore, ©ÎªÌmutex, ¤x¸g«Yø¦Pos , ´N¦³ø¦Papi, ¦ýÊ\¦a°µªºfunction ¤@¼Ë:
void MyCreateThread(...)
{
#ifdef _OS_WINDOWS_
CreateThread(...);
#elseif _OS_LINUX_
p_thread_create(...);
#endif
}
ËݼË, §AÓmyCreateThread(...) ´N¥i¥H©ð¥hlinux, ©ÎªÌwindow ¦æ°Õ, ¥un§Acompile ®Éset ²M·¡§Aªºmacro ...
3. debug msg build
¥ò¦³´N«Y, ·í§Andebug §AÓprogram, ³q±`§A³£·|¥[¤@d printf, ¦ý·ínreleaes Úd «È, §A´N·|§R°£®Í, ËÝø³q§A¯u«Y¨C¤@¥y¥h§R«§... ¦pªG¥Îmacro:
#ifdef _debug_
printf(...);
#endif
ËݧA´N¦n®e©öËÝ, ¥i¥H "keep" ¦íd debug code, ¦ý«Yrelease ®É, ¥unundefine µfÓ_debug_, §A´N¥i¥H¦n»´©öËÝ"§R°£" ®Í©Ò¦³printf debug code, ¦]¬°©Ò¦³Ú_debug_ ¥]¦íªºcode ¤x¸gø·|¹Lcompiler ...³Ì«áÓbuild ³£·|²Ó¦n¦h, ©OÓ¥ç«YÂI¸Ñ«Yvc6, §Abuild Ódebug build ¦Prelease build ®É¤j¤p¤£¦Pªºì¦] ...
macro ¥i¥HËÝÁ¿, «Y¥Îo¾¤°µcode management ªº ~
§Úø¤Ó¼ôjava ©ÎªÌvb, øª¾¨ä¥Llanguage ¦³ÉN©OÃþ¥\¯à©O?
[[i] ¥»©«³Ì«á¥Ñ hhl ©ó 2006-11-27 04:31 AM ½s¿è [/i]]
ªá¤§¼y¦¸ 2006-11-27 21:38
[quote]ì©«¥Ñ [i]hhl[/i] ©ó 2006-11-27 02:17 AM µoªí
º¥ýøª¾ÂI¸Ñ«Ydev-cpp °õ¦æ, ½Ðpost ®Id error ¦Pwarning message o¾¤Ú»¤U.
¥¨¶°¬O«D±`¦³¥Îªº, ¥ýnª¾¹D¥¨¶°¬O¤°»ò, ¥¦¬O¦bcompile time ªº®ÉÔ´N¨M©w¨º¤@¥ycode ncompile, ¨º¤@¥y¤£¥Îcompile, ¨ú¨M©ó§AÂI¼Ë ... [/quote]
¦³Ãö¤º®e¦p¤U:
¦æ¼Æ2
°T®§:invalid prtprocessing directive #include
¦æ¼Æ52
°T®§:pc.cc:No such file or directory
·Q½Ð°Ý¤@¤U§A¬O¦p¦óª¾¹D§Ú¥ÎDev-C++??
[[i] ¥»©«³Ì«á¥Ñ ªá¤§¼y¦¸ ©ó 2006-11-27 02:00 PM ½s¿è [/i]]
hhl 2006-11-27 22:17
[quote]ì©«¥Ñ [i]ªá¤§¼y¦¸[/i] ©ó 2006-11-27 01:38 PM µoªí
¦³Ãö¤º®e¦p¤U:
¦æ¼Æ2
°T®§:invalid prtprocessing directive #include
¦æ¼Æ52
°T®§:pc.cc:No such file or directory
·Q½Ð°Ý¤@¤U§A¬O¦p¦óª¾¹D§Ú¥ÎDev-C++?? [/quote]
§A¦Û¤v¼g¥Îdev-cpp ªº ................................... °V¿ô¥¼ ... :saujai:
¦æ¼Æ2: §A¦Û¤v¥´¿ù¥ª°µ #inclue ... ¤£¥Îºò, programmer ¦¨¤é³£¿ù®I©Od µLÍùÀY³¥ ...
¦æ¼Æ5:
Ê\ݯø¨ìpc.cc .. §Ú³£øª¾ÂI¸ÑØ{ ... ¨ä¹ê§A¬qcode ³£ø¨Ï¥Îpc.cc °Õ.. ¥i¥Hcomment ¥ªÊ\...
ªá¤§¼y¦¸ 2006-11-27 22:56
¦n°Õ¦n°Õ, ¤@¤U¤l°O¿ù°Õ, ¤£¦n·N«ä°Õ, ¬O§Ú°O¿ù°Õ!!!:L:L:L:oh:
¤£¹L§Ú·Q°Ý¦pªG§Ú¤£¥[¥¨¶°±ø¥ó«ü¥O, ¨ä¹ê¹ï©óµ{¦¡¼¶¼g¥H¤Î°õ¦æ·|¤£·|¦³°ÝÃD??:wondering::wondering:
¦P®É, ¦³Ãö#include "pc.cc"·|¤£·|¥u¦³Visual C++¤~¦³, ¨ä¥Lª©¥»¤Ï¦Ó·|¨S¦³, ©ÎªÌ¦³¨S¦³¥²n¦bºôµ¸¤W´M§ä¬ÛÀ³¹ïµ¦©O??:wondering::wondering:
hhl 2006-11-27 23:15
§A¬qcode §Ú¨£ø¨ì»Ýn¦³pc.cc ... ¦Ópc.cc §Ú¥ç³£¤Ö¨£(¥¼¨£¹L°Õ¨ä¹ê, µL¦L¶H), visual c++ ³£´XªÖ©wø»Ýn¦³©OÓfile
¨S¦³¥¨¶°·íµM¨S¦³°ÝÃD, ³Ìºòn§Aª¾¹D¦Û¤v¼g«§oªÌ.. ¦ýn¯d·N, ¨ä¹ê«Yvisual c++ ùر, ³£default ¢§An¦%B
ªá¤§¼y¦¸ 2006-11-28 00:32
Thank you very much!!!:bow::bow: