1

vc++ 08 のディレクトリから拡張子が .jpg のファイルを取得したいのですが、ポインターに慣れていないため、次のコードで文字列の長さを取得しようとするとエラーが発生します。誰でも私を助けることができますか??

これが私のコードです..

#include<iostream>
#include <string>
#pragma warning( disable : 4996 )
#include "dirent.h"
#pragma warning( default : 4996 )
using namespace std;

int main(int argc, char *argv[])
{
if(argc != 2)
{
  cout<<"Usage: "<<argv[0]<<" <Directory name>"<<endl;
  return -1;
}

DIR *dir;
dir = opendir (argv[1]);
if (dir != NULL)
{
    string name; string ext = ".jpg"; int len;

  cout<<"Directory Listing for "<<argv[1]<<" : "<<endl;
  struct dirent *ent;
  while ((ent = readdir (dir)) != NULL)
  {
    name = ent->d_name; 
    len = name.length;                  // here i got error...
    name = name.substr(0, len-4);

    if(_stricmp(name.c_str(), ext.c_str()) == 0)
    {
        cout<<ent->d_name<<endl;
    }
    else
    {
        cout<<"No JPG file"<<endl;
    }
  }
}
else
{
  cout<<"Invalid Directory name"<<endl;
  return -1;
}

return 0;
}

そしてエラーは

example.cpp(29) : error C3867: 'std::basic_string<_Elem,_Traits,_Ax>::length': function call missing argument list; use '&std::basic_string<_Elem,_Traits,_Ax>::length' to create a pointer to member
1>        with
1>        [
1>            _Elem=char,
1>            _Traits=std::char_traits<char>,
1>            _Ax=std::allocator<char>
1>        ]
1>\example.cpp(29) : error C2440: '=' : cannot convert from 'unsigned int (__thiscall std::basic_string<_Elem,_Traits,_Ax>::* )(void) const' to 'int'
1>        with
1>        [
1>            _Elem=char,
1>            _Traits=std::char_traits<char>,
1>            _Ax=std::allocator<char>
1>        ]
1>        There is no context in which this conversion is possible

前もって感謝します...

4

1 に答える 1

2
len = name.length();
             //  ^^

lengthメンバー変数ではなく、メンバー関数です。その関数を呼び出す必要があります。

于 2012-04-02T19:25:48.977 に答える