c语言atof字母,C语言字符转换之atof()

现在看下强大的atof()函数,哇哈哈:

/* Convert a string to a double. */

double

atof (const char *nptr)

{

return strtod (nptr, (char **) NULL);

}

#if HAVE_CONFIG_H

# include

#endif

#include

#ifndef errno

extern int errno;

#endif

#include

#if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII))

# define IN_CTYPE_DOMAIN(c) 1

#else

# define IN_CTYPE_DOMAIN(c) isascii(c)

#endif

#define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (c))

#define ISDIGIT(c) (IN_CTYPE_DOMAIN (c) && isdigit (c))

#define TOLOWER(c) (IN_CTYPE_DOMAIN (c) ? tolower(c) : (c))

#include

#include

#include

#include

/* Convert NPTR to a double. If ENDPTR is not NULL, a pointer to the

character after the last one used in the number is put in *ENDPTR. */

double

strtod (const char *nptr, char **endptr)

{

register const char *s;

short int sign;

/* The number so far. */

double num;

int got_dot; /* Found a decimal point. */

int got_digit; /* Seen any digits. */

/* The exponent of the number. */

long int exponent;

if (nptr == NULL) /*如果为空串,则结束转换*/

{

errno = EINVAL;

goto noconv; /*转向处理无法转换的代码*/

}

s = nptr;

/* Eat whitespace. */

while (ISSPACE (*s))

++s;

/* Get the sign. */

sign = *s == '-' ? -1 : 1;

if (*s == '-' || *s == '+')

++s;

num = 0.0;

got_dot = 0;

got_digit = 0;

exponent = 0;

for (;; ++s)

{

if (ISDIGIT (*s))

{

got_digit = 1;

/* Make sure that multiplication by 10 will not overflow. */

if (num > DBL_MAX * 0.1)

/* The value of the digit doesn't matter, since we have already

gotten as many digits as can be represented in a `double'.

This doesn't necessarily mean the result will overflow.

The exponent may reduce it to within range.

We just need to record that there was another

digit so that we can multiply by 10 later. */

++exponent;

else

num = (num * 10.0) + (*s - '0');

/* Keep track of the number of digits after the decimal point.

If we just divided by 10 here, we would lose precision. */

if (got_dot)

--exponent;

}

else if (!got_dot && *s == '.')

/* Record that we have found the decimal point. */

got_dot = 1;

else

/* Any other character terminates the number. */

break;

}

if (!got_digit)

goto noconv;

if (TOLOWER (*s) == 'e')

{

/* Get the exponent specified after the `e' or `E'. */

int save = errno;

char *end;

long int exp;

errno = 0;

++s;

exp = strtol (s, &end, 10);

if (errno == ERANGE)

{

/* The exponent overflowed a `long int'. It is probably a safe

assumption that an exponent that cannot be represented by

a `long int' exceeds the limits of a `double'. */

if (endptr != NULL)

*endptr = end;

if (exp < 0)

goto underflow;

else

goto overflow;

}

else if (end == s)

/* There was no exponent. Reset END to point to

the 'e' or 'E', so *ENDPTR will be set there. */

end = (char *) s - 1;

errno = save;

s = end;

exponent += exp;

}

if (endptr != NULL)

*endptr = (char *) s;

if (num == 0.0)

return 0.0;

/* Multiply NUM by 10 to the EXPONENT power,

checking for overflow and underflow. */

if (exponent < 0)

{

if (num < DBL_MIN * pow (10.0, (double) -exponent))

goto underflow;

}

else if (exponent > 0)

{

if (num > DBL_MAX * pow (10.0, (double) -exponent))

goto overflow;

}

num *= pow (10.0, (double) exponent);

return num * sign;

overflow:

/* Return an overflow error. */

errno = ERANGE;

return HUGE_VAL * sign;

underflow:

/* Return an underflow error. */

if (endptr != NULL)

*endptr = (char *) nptr;

errno = ERANGE;

return 0.0;

noconv:

/* There was no number. */

if (endptr != NULL)

*endptr = (char *) nptr;

return 0.0;

}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/552613.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

cmd文件 c语言的段,对于TMS320F2812的CMD文件的理解

1.COFF格式要谈CMD文件&#xff0c;首先不可避免的要谈下COFF格式&#xff0c;COFF格式是通用目标文件格式(Common Object FileFormat)的缩写&#xff0c;它是一种流行的二进制可执行文件格式&#xff0c;在DSP里二进制可执行文件包括库文件(.lib)、目标文件(.obj)和最终可执行…

w ndows7与XP哪个好,windows7和xp哪个好 windows7好用吗

经常可以在电脑百事各个QQ群中看到电脑爱好者朋友问各种各样的电脑问题&#xff0c;有的朋友问的问题特别搞笑&#xff0c;其实很多问题都问的等于没人能够被你满意答案&#xff0c;比如有人问过一些比较搞笑的问题&#xff0c;如谁能给介绍一个500G内存&#xff0c;800元的独立…

android点击事件的优先级,Android事件体系全面总结+实践分析,系列篇

前言在这一个月里&#xff0c;我利用闲余的时间看了下最近Android职业发展这块该怎么选择&#xff1f;这个问题各位大神的回答都非常透彻&#xff0c;相信对大家或多或少都在一定程度上有很大的帮助&#xff0c;今天在这里写这篇文章更多的是想以我开发十年的工作经历&#xff…

android各组件翻译,Android App框架指南(译文)

该系列文章是对Android推出的架构组件相关文章&#xff0c;按作者自己理解来翻译的&#xff0c;同时标记有作者自己一些简单笔记。如果读者发现文中有翻译不准确的地方&#xff0c;或者理解错误的地方&#xff0c;请不吝指教。源自Android官方Guide to app architecturel princ…

signature=27ba8feff228d8babc1d1762f8da4445,Embedding digital signatures into digital payloads

摘要&#xff1a;A file may be transferred from one processor-based system to another. The file may include executable binary data together with an integrated digital signature. Each time a receiving processor-based system boots, the digital signature is au…

鸿蒙手机是个噱头,华为鸿蒙不是谈判噱头 必要时会应用手机当中!

7月30日&#xff0c;华为2019年上半年财报发布会上&#xff0c;华为董事长梁华在接受媒体采访时回应称&#xff0c;“鸿蒙”系统不是用来应对与美国谈判的噱头。今年5月&#xff0c;美国商务部将华为列入“实体清单”后不久&#xff0c;华为一系列“备胎”方案开始浮出水面&…

360浏览器html5无法播放,win7系统360浏览器播放不了视频的解决方法

今天和大家分享一下win7系统360浏览器播放不了视频问题的解决方法&#xff0c;在使用win7系统的过程中经常不知道如何去解决win7系统360浏览器播放不了视频的问题&#xff0c;有什么好的办法去解决win7系统360浏览器播放不了视频呢&#xff1f;小编教你只需要 1、视频无法正常…

计算机网络技术专业发展现状,计算机网络技术的发展现状和前景

摘 要&#xff1a;计算机和网络目前已经在我国社会得到普及化应用&#xff0c;对人们生活的方方面面和社会各项工作的开展都产生了革命性的巨大影响。但是&#xff0c;也不得不看到目前我国计算机网络技术发展中仍然存在一些问题&#xff0c;例如计算机网络技术创新性应用和开发…

计算机专业论文要交源代码吗,计算机毕业论文源代码.doc

计算机毕业论文源代码.doc计算机毕业论文源代码计算机毕业论文源代码&#xff1a;会计信息生产社会化仿真系统1.折旧年限表(company_zjnx)建表源程序&#xff1a;CREATE TABLE [dbo].[company_zjnx] ([cname] [char] (40) COLLATE Chinese_PRC_CI_AS NULL ,[obj_name] [char] (…

广西高职计算机网络技术,计算机网络技术专业考试大纲-广西职业技术学院.DOC...

计算机网络技术专业考试大纲-广西职业技术学院2011年广西职业技术学院面向中等职业学校毕业生对口招生考试《计算机网络技术》专业课考试大纲一&#xff0e;考试性质广西职业技术学院面向中等职业学校毕业生对口招生《计算机网络技术》专业测试是由已参加2011年普通高考报名的我…

html设置数字显示位数,数字万用表的显示位数和精度

数字万用表的显示位数和精度今天&#xff0c;我们来聊一聊数字万用表的位数和精度&#xff0c;到底什么是四位半&#xff1f;分辨率到底是哪个数&#xff1f;万用表的精度要如何计算&#xff1f;万用表的显示位数计数显示&#xff1a;万用表的显示位数范围。位数显示&#xff1…

r导出html怎么保存,做植物谱系图,用Phylomatic软件将网页中的输出结果拷贝到文本文件中, 并另存为phylo...

我是一个本科生&#xff0c;大四做毕设&#xff0c;要用到Phylomatic在线软件&#xff0c;我对计算机不是很熟&#xff0c;我的专业也只是环境科学&#xff0c;跟植物无关&#xff0c;所以对此非常不熟悉&#xff0c;用R做完plantlist后&#xff0c;再用Phylomatic在线软件&…

学计算机广东2B大学,2021年广东省较好的2B大学排名,广东2B大学排名出炉

广东省较好的2B大学排名,广东2B大学排名出炉广东2B大学排名&#xff1a;北京师范大学珠海分校珠海市外生源投档线文科达541分&#xff0c;理科达519分;广东外语外贸大学南国商学院投档线文科534分&#xff0c;理科513分;吉林大学珠海学院珠海市外生源投档线文科达531分&#xf…

w7提示无法关闭计算机,win7关不了机怎么回事?老司机教你怎么解决电脑关不了机...

win10系统的到来&#xff0c;慢慢的曾经称霸多年的xp已经退出了系统的舞台了&#xff0c;逐渐的win7也将重演历史&#xff0c;不过说到这个win7系统可以说是微软革命性的系统之一&#xff0c;其稳定、友好的界面&#xff0c;受到广大用户的拥戴&#xff0c;不过win7也有一些让人…

sendmail发送html邮件,尝试使用sendmail发送/发送html电子邮件,但显示电子邮件的源代码...

我试图在PHP中发送HTML电子邮件&#xff0c;但它始终显示电子邮件程序中电子邮件的源代码。但它应该将html电子邮件呈现为html&#xff0c;而不是将源代码显示为电子邮件内容。尝试使用sendmail发送/发送html电子邮件&#xff0c;但显示电子邮件的源代码我把我的邮件是这样的&a…

计算机语言史话论文,【论文节选】自然语言处理发展历史。

说实话看完文章有点失望&#xff0c;作者带有一贯的学术吹嘘风&#xff0c;就像吹嘘云计算&#xff0c;物联网等等。谈到现状&#xff0c;只字不提问题&#xff0c;一句话“一旦自然语言处理的研究获得成功&#xff0c;那么机器将能够进行思考&#xff0c;人类将得到继工业革命…

vue开发跨平台应用

native script 开发android和ios的框架,js引擎和本地交互没有webview,更加高效 npm install -g nativescript ns create my-app --js ns create my-app --template typescript ns create my-app --template angular ns create my-app --template vue 编译 ns build android …

杭州招聘计算机专业毕业生,毕业季必看!杭州高校毕业生就业情况:这些专业最吃香!这个岗位最缺人!...

原标题&#xff1a;毕业季必看&#xff01;杭州高校毕业生就业情况&#xff1a;这些专业最吃香&#xff01;这个岗位最缺人&#xff01;夏天&#xff0c;就是毕业的季节有一群人要离开校园&#xff0c;走上社会也有一群人要面临填志愿、选专业在杭州&#xff0c;什么专业最热门…

澳国立计算机录取分数,澳洲出国:2018年澳洲国立大学对高考成绩的本科录取分数线(多图)...

大师兄留学网(微信公众号&#xff1a;留学申请Free)是一支免费申请澳大利亚&#xff0c;新西兰&#xff0c;泰国&#xff0c;新加坡&#xff0c;马来西亚的零中介平台。大师兄留学网(微信号&#xff1a;Betty8990)在申请澳洲方面&#xff0c;有办理留学经验超过十年的学长学姐&…

寻仙手游维护公告服务器停服更新,寻仙手游3月1日停服更新公告 更新内容分享...

原标题&#xff1a;寻仙手游3月1日停服更新公告 更新内容分享在寻仙手游中&#xff0c;为了让玩家们更好的体验游戏。寻仙手游将于3月1日对游戏进行停服更新&#xff0c;本次更新新增了哪些新内容&#xff0c;今天小编就给大家带来寻仙手游3月1日停服更新公告的详细内容。寻仙手…