请帮我说一说

BallyTan 2001-12-28 10:34:43
有一个类:
class TRecord
{
public:
TRecord( const string& word, unsigned lineNum );
int operator == ( const TRecord& record ) const;
int operator < ( const TRecord& record ) const;
int AddLineRef( unsigned lineNum );
string GetWord() const;
unsigned GetPageCount() const;
friend ostream& operator << ( ostream&, const TRecord& );
private:
string Word;
TSVectorImp<unsigned> LineRef;
};

请问怎么理解:
int operator == ( const TRecord& record ) const;
中的 operator ==;const;还有 冒号 :怎么样用? 各代表什么?
我看帮助文件没有看明白。

还有以下几名请问怎么理解:
template <class T> Directory<T>::Directory( const char *FileSpec ) :
Array( 10, 0, 5 )
{ }
下面有一段代码:

template <class T> class Directory
{

public:

Directory( const char *FileSpec );
void Show();

private:

TISArrayAsVector<T> Array;

};

template <class T> Directory<T>::Directory( const char *FileSpec ) :
Array( 10, 0, 5 )
{
struct ffblk FileBlock;
int Done = findfirst( FileSpec, &FileBlock, 0 );
while( !Done )
{
Array.Add( new T(FileBlock) );
Done = findnext( &FileBlock );
}
}

static void ShowBlock( FilesByName &blk, void * )
{
cout << blk << endl;
}

static void ShowBlock( FilesByDate &blk, void * )
{
cout << blk << endl;
}

static void ShowBlock( FilesBySize &blk, void * )
{
cout << blk << endl;
}

template <class T> inline void Directory<T>::Show()
{
Array.ForEach( ShowBlock, 0 );
}

void SortByName( const char *FileSpec )
{
Directory<FilesByName> dir( FileSpec );
dir.Show();
}

void SortByDate( const char *FileSpec )
{
Directory<FilesByDate> dir( FileSpec );
dir.Show();
}

void SortBySize( const char *FileSpec )
{
Directory<FilesBySize> dir( FileSpec );
dir.Show();
}

int main( int argc, char *argv[] )
{
if( argc < 2 || argc > 3 )
{
cerr << "Usage: directory [options] filespec" << endl << endl;
cerr << "Options:" << endl;
cerr << "\t-sd\tsort by date" << endl;
cerr << "\t-sn\tsort by name" << endl;
cerr << "\t-ss\tsort by size" << endl;
exit(1);
}

if( argc != 3 )
SortByName( argv[1] );
else
{
if( strcmp( argv[1], "-sn" ) == 0 )
SortByName( argv[2] );
else if( strcmp( argv[1], "-sd" ) == 0 )
SortByDate( argv[2] );
else if( strcmp( argv[1], "-ss" ) == 0 )
SortBySize( argv[2] );
}

return 0;
}

...全文
107 9 打赏 收藏 转发到动态 举报
写回复
用AI写文章
9 条回复
切换为时间正序
请发表友善的回复…
发表回复
hz129 2001-12-28
  • 打赏
  • 举报
回复
还是自己再看看书吧,都有的
linning2570 2001-12-28
  • 打赏
  • 举报
回复
((`'-"``""-'`))
        )  -  - (
       /  (o _ o)         \  ( 0 )  /
       _'-.._'='_..-'_
      /`;#'#'#.-.#'#'#;`      \_))  '#'  ((_/
       #. ☆ ☆ ☆  #
       '#. 元旦快乐.#'
       / '#.   .#'        _\ \'#. .#'/ /_
      (((___) '#' (___)))
linhui 2001-12-28
  • 打赏
  • 举报
回复

up
hzhhua 2001-12-28
  • 打赏
  • 举报
回复
是运算符重载啦!你到底学过没有?!
BallyTan 2001-12-28
  • 打赏
  • 举报
回复
上面的东西是我从Borland C++ 5的例子中抄出来的。
没有看明白,想请各位指教一下。
operator ==
operator <

operator是怎么重载的.

thanks
andy_lau 2001-12-28
  • 打赏
  • 举报
回复
template <class T> Directory<T>::Directory( const char *FileSpec ) :
Array( 10, 0, 5 )
{ }
很明显对象 array 是Directory的成员对象,当一个类中包含另外一个类的对象的时候,
当初始化这个类的一个对象时,应调用成员对象的构造函数(并先执行它即先初始化成员对象)template <class T> Directory<T>::Directory( const char *FileSpec ) :
Array( 10, 0, 5 )
{ }//这个就是在初始化Directory的对象的同时调用Array的构造函数(即初始化成员对象)

andy_lau 2001-12-28
  • 打赏
  • 举报
回复
class TRecord
{
public:
TRecord( const string& word, unsigned lineNum );
int operator == ( const TRecord& record ) const;//函数声明
int operator < ( const TRecord& record ) const;
int AddLineRef( unsigned lineNum );
string GetWord() const;
unsigned GetPageCount() const;
friend ostream& operator << ( ostream&, const TRecord& );
private:
string Word;
TSVectorImp<unsigned> LineRef;
};
我不太明白你的意识,我觉得你问的问题好象就不对,并没有地方用:
chengyumao 2001-12-28
  • 打赏
  • 举报
回复
:
heimeng 2001-12-28
  • 打赏
  • 举报
回复
..

69,372

社区成员

发帖
与我相关
我的任务
社区描述
C语言相关问题讨论
社区管理员
  • C语言
  • 花神庙码农
  • 架构师李肯
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧