TStrings is the base class for objects that represent a list of strings.
标准说明。那这样的话和TStringList有什么区别啊!

解决方案 »

  1.   

    TStringList继承了TStrings的所有,同时还实现了以下几个新的功能:
    1、Sort the strings in the list.
    2、Prohibit duplicate strings in sorted lists.
    3、Respond to changes in the contents of the list.
      

  2.   

    TStrings是抽象基类,不能直接使用,TStringList是TStrings的派生类,它实现了TStrings中的那些纯虚函数!
      

  3.   

    如楼上所说 TStrings是抽象基类,其中的虚函数不能直接使用,必须使用TStrings的派生类中的经过实现的函数,如TStringList