獲取exe所在目錄路徑,速度

// test.cpp : 定義控制檯應用程序的入口點。
//

#include "stdafx.h"
#include <Windows.h>
#include <time.h>
#include <string>

int _tmain(int argc, _TCHAR* argv[])
{
    int size = 999999;
    TCHAR sCfgFile[MAX_PATH];
    DWORD dw_ret = GetModuleFileName(NULL, sCfgFile, MAX_PATH);

    time_t start, end ;   
    time(&start);  
 
    for (int i = 0; i < size; ++i)
    {
        std::wstring path = sCfgFile;
        if (0 != dw_ret)
        {
            size_t pos = path.find_last_of('\\');
            if (-1 != pos)
            {
                path = path.substr(0, pos + 1);
            }
        }

    }

    time(&end);  
    double cost=difftime(end,start);  
    //wprintf(L"轉化成字符串後,獲取路徑話費時間----%f\n",cost);  
    printf("轉化成字符串後,獲取路徑話費時間----%f\n",cost);  

    time_t start1, end1 ;   
    time(&start1);  
    int i = 0;
    for (int j = 0; j < size; ++j)
    {
        if (dw_ret > 0)
        {
            for (i = lstrlen(sCfgFile); sCfgFile[i] != '\\' && i >0; i--);

            sCfgFile[i + 1] = '\0';
        }

    }

    time(&end1);  
    double cost1=difftime(end1,start1);  
    //wprintf(L"for循環找\字符獲取路徑----%f\n",cost1);  
    printf("for循環找字符獲取路徑----%f\n",cost1);  

    time_t start2, end2 ;   
    time(&start2);  

    for (int i = 0; i < size; ++i)
    {
    }

    time(&end2);  
    double cost2=difftime(end2,start2);  
    printf("空循環----%f\n",cost2); 

    system("pause");

    return 0;
}

 

這裏是unicode編譯環境spa

 

若是是多字節編譯的話,能夠將 code

lstrlen(sCfgFile)換成strlen(sCfgFile),
將sCfgFile的類型換成 char

這裏獲得的結果是
相關文章
相關標籤/搜索