Error[8]: Undefined offset: 3, File: /www/wwwroot/outofmemory.cn/tmp/plugin_ss_superseo_model_superseo.php, Line: 121
File: /www/wwwroot/outofmemory.cn/tmp/plugin_ss_superseo_model_superseo.php, Line: 473, decode(

概述在大学里,我被问到我们的程序是否检测到从命令行参数输入的字符串是否是一个它没有的整数(./ Program 3.7).现在我想知道我怎么能发现这个.因此例如a的输入是无效的,其中atoi检测到,但是例如3.6的输入应该是无效的但是atoi将其转换为整数. #include <stdio.h>int main(int argc, char *argv[]) { if (argc > 1) 在大学里,我被问到我们的程序是否检测到从命令行参数输入的字符串是否是一个它没有的整数(./ Program 3.7).现在我想知道我怎么能发现这个.因此例如a的输入是无效的,其中atoi检测到,但是例如3.6的输入应该是无效的但是atoi将其转换为整数.

#include <stdio.h>int main(int argc,char *argv[]) {    if (argc > 1) {        int number = atoi(argv[1]);        printf("okay\n");    }}

但是只有当argv [1]真的是一个整数时才应该打印出来.希望我的问题很明确.非常感谢.

解决方法 看看 strtol.

If endptr is not NulL,strtol() stores the address of the first invalID character in *endptr. If there were no digits at all,however,strtol() stores the original value of str in *endptr. (Thus,if *str is not

#include <stdio.h>int main(int argc,char *argv[]) {  if (argc > 1) {    char* end;    long number = strtol(argv[1],&end,0);    if (*end == '[+++]')      printf("okay\n");  }}
' but **endptr is\0′ on return,the entire string was valID.)

[+++] 总结

以上是内存溢出为你收集整理的将字符串转换为int(但仅当真的是int时)全部内容,希望文章能够帮你解决将字符串转换为int(但仅当真的是int时)所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

)
File: /www/wwwroot/outofmemory.cn/tmp/route_read.php, Line: 126, InsideLink()
File: /www/wwwroot/outofmemory.cn/tmp/index.inc.php, Line: 165, include(/www/wwwroot/outofmemory.cn/tmp/route_read.php)
File: /www/wwwroot/outofmemory.cn/index.php, Line: 30, include(/www/wwwroot/outofmemory.cn/tmp/index.inc.php)
Error[8]: Undefined offset: 4, File: /www/wwwroot/outofmemory.cn/tmp/plugin_ss_superseo_model_superseo.php, Line: 121
File: /www/wwwroot/outofmemory.cn/tmp/plugin_ss_superseo_model_superseo.php, Line: 473, decode(

概述在大学里,我被问到我们的程序是否检测到从命令行参数输入的字符串是否是一个它没有的整数(./ Program 3.7).现在我想知道我怎么能发现这个.因此例如a的输入是无效的,其中atoi检测到,但是例如3.6的输入应该是无效的但是atoi将其转换为整数. #include <stdio.h>int main(int argc, char *argv[]) { if (argc > 1) 在大学里,我被问到我们的程序是否检测到从命令行参数输入的字符串是否是一个它没有的整数(./ Program 3.7).现在我想知道我怎么能发现这个.因此例如a的输入是无效的,其中atoi检测到,但是例如3.6的输入应该是无效的但是atoi将其转换为整数.

#include <stdio.h>int main(int argc,char *argv[]) {    if (argc > 1) {        int number = atoi(argv[1]);        printf("okay\n");    }}

但是只有当argv [1]真的是一个整数时才应该打印出来.希望我的问题很明确.非常感谢.

解决方法 看看 strtol.

If endptr is not NulL,strtol() stores the address of the first invalID character in *endptr. If there were no digits at all,however,strtol() stores the original value of str in *endptr. (Thus,if *str is not

#include <stdio.h>int main(int argc,char *argv[]) {  if (argc > 1) {    char* end;    long number = strtol(argv[1],&end,0);    if (*end == '')      printf("okay\n");  }}
' but **endptr is\0′ on return,the entire string was valID.)

[+++] 总结

以上是内存溢出为你收集整理的将字符串转换为int(但仅当真的是int时)全部内容,希望文章能够帮你解决将字符串转换为int(但仅当真的是int时)所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

)
File: /www/wwwroot/outofmemory.cn/tmp/route_read.php, Line: 126, InsideLink()
File: /www/wwwroot/outofmemory.cn/tmp/index.inc.php, Line: 165, include(/www/wwwroot/outofmemory.cn/tmp/route_read.php)
File: /www/wwwroot/outofmemory.cn/index.php, Line: 30, include(/www/wwwroot/outofmemory.cn/tmp/index.inc.php)
将字符串转换为int(但仅当真的是int时)_C_内存溢出

将字符串转换为int(但仅当真的是int时)

将字符串转换为int(但仅当真的是int时),第1张

概述在大学里,我被问到我们的程序是否检测到从命令行参数输入的字符串是否是一个它没有的整数(./ Program 3.7).现在我想知道我怎么能发现这个.因此例如a的输入是无效的,其中atoi检测到,但是例如3.6的输入应该是无效的但是atoi将其转换为整数. #include <stdio.h>int main(int argc, char *argv[]) { if (argc > 1) 在大学里,我被问到我们的程序是否检测到从命令行参数输入的字符串是否是一个它没有的整数(./ Program 3.7).现在我想知道我怎么能发现这个.因此例如a的输入是无效的,其中atoi检测到,但是例如3.6的输入应该是无效的但是atoi将其转换为整数.

#include <stdio.h>int main(int argc,char *argv[]) {    if (argc > 1) {        int number = atoi(argv[1]);        printf("okay\n");    }}

但是只有当argv [1]真的是一个整数时才应该打印出来.希望我的问题很明确.非常感谢.

解决方法 看看 strtol.

If endptr is not NulL,strtol() stores the address of the first invalID character in *endptr. If there were no digits at all,however,strtol() stores the original value of str in *endptr. (Thus,if *str is not

#include <stdio.h>int main(int argc,char *argv[]) {  if (argc > 1) {    char* end;    long number = strtol(argv[1],&end,0);    if (*end == '')      printf("okay\n");  }}
' but **endptr is\0′ on return,the entire string was valID.)

总结

以上是内存溢出为你收集整理的将字符串转换为int(但仅当真的是int时)全部内容,希望文章能够帮你解决将字符串转换为int(但仅当真的是int时)所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1221758.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-05
下一篇 2022-06-05

发表评论

登录后才能评论

评论列表(0条)

保存