M mazheng Unregistered / Unconfirmed GUEST, unregistred user! 2007-09-24 #1 m_strPassword.IsEmpty() ? NULL : (LPCTSTR)m_strPassword 如何写成 pascal 语句 ? ( 积分: 10 )<br />m_strPassword.IsEmpty() ? NULL : (LPCTSTR)m_strPassword 如何写成 pascal 语句 ?
m_strPassword.IsEmpty() ? NULL : (LPCTSTR)m_strPassword 如何写成 pascal 语句 ? ( 积分: 10 )<br />m_strPassword.IsEmpty() ? NULL : (LPCTSTR)m_strPassword 如何写成 pascal 语句 ?
A ANiDelphi Unregistered / Unconfirmed GUEST, unregistred user! 2007-09-25 #2 前面应该有个赋值变量吧,现在假设为Result: (Result应该是个Pointer,或者说PWideChar更好点) if m_strPassword.IsEmpty() then Result := nil else Result := m_strPassword;
前面应该有个赋值变量吧,现在假设为Result: (Result应该是个Pointer,或者说PWideChar更好点) if m_strPassword.IsEmpty() then Result := nil else Result := m_strPassword;
地 地质灾害 Unregistered / Unconfirmed GUEST, unregistred user! 2007-09-25 #3 简直是SB,?:运算符Pascal没有,m_strPassword也是C++或C#的string类型吧,Pascal也没有这个类。