用VC调试时,按F11想进到我写的函数内部去,却进不去,进到另一个文件中// xstring internal header (from <string>)
指向       basic_string(const _Myt& _X)
: allocator(_X.allocator)
{_Tidy(), assign(_X, 0, npos); }  
请问这是什么原因?我为什么进不到我写的函数内部去?怎样才能进去?请高手指点!

解决方案 »

  1.   

            vector<string> Address;
    _asm int 3;  //用于测试的语句
    vector<string> Style;
    string ReadTime = "时间";
    string DataStyle = "01";
    string Mode = "一次";
    vector<vector<string> > returnValue;
    string s1="000000000011";
    Address.push_back(s1);
    string s2="单";
            Style.push_back(s2);
    Service t;
    t.concentratorRead(Address,Style,ReadTime,DataStyle,Mode,returnValue);
    程序就是这样,我按F11想进到concentratorRead()函数内部,却进不去,进到另一个文件中// xstring internal header (from <string>)
    指向 basic_string(const _Myt& _X)
    : allocator(_X.allocator)
    {_Tidy(), assign(_X, 0, npos); }  
    这是为什么?怎样才能进去?
      

  2.   

    简单一点,你直接在你的concentratorRead函数里设置断点不就完了
      

  3.   

    F11进去的时候可能会先进去另外一些函数,从而初始化其他中间变量;你可以F11进去后再出来,再进去,多试几次就ok了···