应用程序版本号比对
程序员文章站
2024-02-20 19:32:40
...
BOOL CompareVersion(LPCTSTR lpszVer1, LPCTSTR lpszVer2, int& nResult)
{
BOOL bRet = FALSE;
do
{
if ((NULL == lpszVer1) || (NULL == lpszVer2)) { break; }
// Version: a.b.c.d
#define DEFAULT_MAX_VERSION_COUNT (4)
int nVer1[DEFAULT_MAX_VERSION_COUNT] = { 0 };
int nVer2[DEFAULT_MAX_VERSION_COUNT] = { 0 };
ASSERT(_countof(nVer1) == _countof(nVer2));
_stscanf_s(lpszVer1, TEXT("%d.%d.%d.%d"), &nVer1[0], &nVer1[1], &nVer1[2], &nVer1[3]);
_stscanf_s(lpszVer2, TEXT("%d.%d.%d.%d"), &nVer2[0], &nVer2[1], &nVer2[2], &nVer2[3]);
for (size_t i = 0; i != min(_countof(nVer1), _countof(nVer2)); ++i)
{
if (nVer1[i] == nVer2[i]) { nResult = 0; continue; }
if (nVer1[i] > nVer2[i]) { nResult = 1; break; }
if (nVer1[i] < nVer2[i]) { nResult = -1; break; }
}
// Completed
bRet = TRUE;
} while (0);
return bRet;
}
// For Example:
int nResult = 0;
CompareVersion(TEXT("1.0.6.09"), TEXT("1.0.5.102"), nResult);
CString strText;
strText.Format(TEXT("Result: %d"), nResult);
AfxMessageBox(strText);
推荐阅读
-
应用程序版本号比对
-
第一次使用netbeans及创建web应用程序 博客分类: java base NetbeansJavaEE
-
第一次使用netbeans及创建GUI应用程序 博客分类: java base Netbeans
-
第一次使用netbeans及创建web应用程序 博客分类: java base NetbeansJavaEE
-
第一次使用netbeans及创建GUI应用程序 博客分类: java base Netbeans
-
《java并发编程实战》笔记(一) 结构化并发应用程序
-
关于提高Oracle应用程序的编程效率
-
序列化版本号serialVersionUID的作用_动力节点Java学院整理
-
c#高效比对大量图片的实例代码
-
PHP应用程序的性能优化_PHP