버전 번호는 어떻게 비교합니까?
예를 들면 :
x = 1.23.56.1487.5
y = 1.24.55.487.2
X
, Y
또는 Z
, 항상 나를 왜 궁금합니다." split
기능 을 사용하지 않는 이유는 무엇 입니까? 이 split
함수는 System.Version
클래스 를 사용하지 않을 경우이를 수행하는 좋은 방법 인 것 같습니다 .
버전 번호는 어떻게 비교합니까?
예를 들면 :
x = 1.23.56.1487.5
y = 1.24.55.487.2
X
, Y
또는 Z
, 항상 나를 왜 궁금합니다." split
기능 을 사용하지 않는 이유는 무엇 입니까? 이 split
함수는 System.Version
클래스 를 사용하지 않을 경우이를 수행하는 좋은 방법 인 것 같습니다 .
답변:
Version 클래스를 사용할 수 있습니까?
http://msdn.microsoft.com/en-us/library/system.version.aspx
IComparable 인터페이스가 있습니다. 이것은 당신이 보여준 것과 같은 5 부분 버전 문자열에서는 작동하지 않을 것입니다 (정말 당신의 버전 문자열입니까?). 입력이 문자열이라고 가정하면 다음은 일반 .NET 4 부분 버전 문자열을 사용한 작업 샘플입니다.
static class Program
{
static void Main()
{
string v1 = "1.23.56.1487";
string v2 = "1.24.55.487";
var version1 = new Version(v1);
var version2 = new Version(v2);
var result = version1.CompareTo(version2);
if (result > 0)
Console.WriteLine("version1 is greater");
else if (result < 0)
Console.WriteLine("version2 is greater");
else
Console.WriteLine("versions are equal");
return;
}
}
Version.Parse(v1) < Version.Parse(v2)
되었기 때문에 보다 읽기 쉽게 비교할 수 있습니다 operator >(Version v1, Version v2)
.
Debug.Assert(new Version("6.0.0") < new Version("6.0.0.0"));
@JohnD의 답변 외에도 Split ( '.') 또는 기타 문자열 <-> int 변환 부풀림을 사용하지 않고 부분 버전 번호 만 비교할 필요가있을 수 있습니다. 1 개의 추가 인수 (비교할 버전 번호의 중요한 부분 수 (1과 4 사이))를 사용하여 확장 메서드 CompareTo를 작성했습니다.
public static class VersionExtensions
{
public static int CompareTo(this Version version, Version otherVersion, int significantParts)
{
if(version == null)
{
throw new ArgumentNullException("version");
}
if(otherVersion == null)
{
return 1;
}
if(version.Major != otherVersion.Major && significantParts >= 1)
if(version.Major > otherVersion.Major)
return 1;
else
return -1;
if(version.Minor != otherVersion.Minor && significantParts >= 2)
if(version.Minor > otherVersion.Minor)
return 1;
else
return -1;
if(version.Build != otherVersion.Build && significantParts >= 3)
if(version.Build > otherVersion.Build)
return 1;
else
return -1;
if(version.Revision != otherVersion.Revision && significantParts >= 4)
if(version.Revision > otherVersion.Revision)
return 1;
else
return -1;
return 0;
}
}
public int compareVersion(string Version1,string Version2)
{
System.Text.RegularExpressions.Regex regex = new System.Text.RegularExpressions.Regex(@"([\d]+)");
System.Text.RegularExpressions.MatchCollection m1 = regex.Matches(Version1);
System.Text.RegularExpressions.MatchCollection m2 = regex.Matches(Version2);
int min = Math.Min(m1.Count,m2.Count);
for(int i=0; i<min;i++)
{
if(Convert.ToInt32(m1[i].Value)>Convert.ToInt32(m2[i].Value))
{
return 1;
}
if(Convert.ToInt32(m1[i].Value)<Convert.ToInt32(m2[i].Value))
{
return -1;
}
}
return 0;
}
compareVersion("1.3", "1.3.1")
어떤 이유로 버전의 비교 방법을 직접 사용할 수없는 경우 (예 : 클라이언트-서버 시나리오에서) 다른 방법은 버전에서 긴 숫자를 추출한 다음 서로 비교하는 것입니다. 그러나 번호는 Major, Minor 및 Revision의 경우 2 자리, Build의 경우 4 자리 형식이어야합니다.
버전 번호를 추출하는 방법 :
var version = Assembly.GetExecutingAssembly().GetName().Version;
long newVersion = version.Major * 1000000000L +
version.Minor * 1000000L +
version.Build * 1000L +
version.Revision;
그리고 다른 곳에서 비교할 수 있습니다.
if(newVersion > installedVersion)
{
//update code
}
참고 : installedVersion은 이전에 추출 된 긴 숫자입니다.