Google

Go to the first, previous, next, last section, table of contents.


¥³¥á¥ó¥È

C ¤ÈƱÍÍ `/*' ¤È `*/' ¤Ç°Ï¤Þ¤ì¤¿Éôʬ¤Ï¥³¥á¥ó¥È¤È¤·¤Æ°·¤ï¤ì¤ë.

/*
 * This is a comment.
 */

def afo(X) {

¥³¥á¥ó¥È¤ÏÊ£¿ô¹Ô¤ËÅϤäƤ⹽¤ï¤Ê¤¤¤¬, Æþ¤ì»Ò¤Ë¤¹¤ë¤³¤È¤Ï¤Ç¤­¤Ê¤¤. `/*' ¤¬¤¤¤¯¤Ä¤¢¤Ã¤Æ¤âºÇ½é¤Î¤â¤Î¤Î¤ß¤¬Í­¸ú¤È¤Ê¤ê, ºÇ½é¤Ë¸½¤ì¤¿ `*/' ¤Ç¥³¥á¥ó¥È¤Ï½ªÎ»¤·¤¿¤È¸«¤Ê¤µ¤ì¤ë. ¥×¥í¥°¥é¥à¤Ê¤É¤Ç, ¥³¥á¥ó¥È ¤ò´Þ¤à²ÄǽÀ­¤¬¤¢¤ëÉôʬ¤ò¥³¥á¥ó¥È¥¢¥¦¥È¤·¤¿¾ì¹ç¤Ë¤Ï, #if 0, #endif¤ò»È¤¨¤Ð¤è¤¤. (See section ¥×¥ê¥×¥í¥»¥Ã¥µ.)

#if 0
def bfo(X) {
/* empty */
}
#endif


Go to the first, previous, next, last section, table of contents.