导读 大家好,小跳来为大家解答以上的问题。strtol函数的用法,strtol这个很多人还不知道,现在让我们一起来看看吧!1、 将字符串转换成长整数l
大家好,小跳来为大家解答以上的问题。strtol函数的用法,strtol这个很多人还不知道,现在让我们一起来看看吧!
1、// 将字符串转换成长整数long atol(const char* s); // 将字符串转换成长整数。
2、base为基数/进制// 如果转换成功。
3、*endptr指向s; 否则*endptr指向第一个非法字符long strtol(const char*s, char** endptr, int base);long n1 = atol("13"); // n1 = 13long n2 = atol("abc"); // n2 = 0;char* p = NULL;long n3 = strtol("123", &p, 10); // n3 = 123long n4 = strtol("123", &p, 8); // n4 = 83long n5 = strtol("123xyz", &p, 10); // n5 = 123, *p = x。
本文到此分享完毕,希望对大家有所帮助。
本文地址:[https://chuanchengzhongyi.com/kepu/b81a00858a0ff694.html]