delphi里的pchar是什么意思?
转到bcb是怎么写?

解决方案 »

  1.   

    就是可以把一个字符串转换成一个char类型的串 ,PChar是Char类型的指针。
    指向字符或字符串的指针
      

  2.   

    The fundamental types PAnsiChar and PWideChar represent pointers to AnsiChar and WideChar values, respectively. The generic PChar represents a pointer to a Char (that is, in its current implementation, to an AnsiChar). These character pointers are used to manipulate null-terminated strings. 
      

  3.   

    一个指向CHAR的指针,
    Pchar --- >  "P"代表指针,"CHAR"代表指针指向的数据类型
      同理 有
      Pinteger Pstring.....
      

  4.   

    需要PCHAR类型的参数你就直接转化就行了。什么东西上面人都说了,比如  Application.MessageBox(pchar('fasdfasdfasa'),'警告',0 );
      

  5.   


    char类型的指针
    char *
      

  6.   

    D2010之前 PChar = PAnsiChar  对应 char *
    D2010     PChar = PWideChar  对应 WCHAR *
      

  7.   

    PChar 指向字符串的指针(指针类型)