还有一个是:
Access violation at address 00403c50 in module 'GFChat.exe'. Read of address FFFFFFDD.
这个是什么地方错误?
解决上面俩个问题我将给100分

解决方案 »

  1.   

    Invalid class typecast.
    使用了错误的强制类型转换.
      

  2.   

    Access violation at address 00403c50 in module 'GFChat.exe'. Read of address FFFFFFDD.
    Windows拒绝你的程序读写地址为FFFFFFDD的区域.
      

  3.   

    This error message is issued for type casts not allowed by the rules. The following kinds of casts are allowed: - Ordinal or pointer type to another ordinal or pointer type - A character, string, array of character or pchar to a string - An ordinal, real, string or variant to a variant - A variant to an ordinal, real, string or variant - A variable reference to any type of the same size. Note that casting real types to integer can be performed with the standard functions Trunc and Round.There are other transfer functions like Ord and Chr that might make your intention clearer. program Produce;begin
      Writeln( Integer(Pi) );
    end.This programmer thought he could cast a floating point constant to Integer, like in C. program Solve;begin
      Writeln( Trunc(Pi) );
    end.In Pascal, we have separate Transfer functions to convert floating point values to integer.
    这是我在d6中找到的关于invalid typecase的
    帮助文档