楼主 jing1205i(hengheng)2004-04-18 19:24:13  
  type   
      Date   =   record   
          Year:   Integer;   
          Month:   Byte;   
          Day:   Byte;   
      end;   
        
  const   
      BirthDay:   Date   
    
  如何在申明的时候就赋上值啊?我的想法是这样...   
  const   
      BirthDay:   Date=     这后面该怎么写啊?大侠! 
 
1楼 blazingfire(烈焰)(对.net极度憎恨中....)
const   
      BirthDay:   Date=     (Year:2002;   Month:12;   Day:10);