问题标签 [zero]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
4 回答
12231 浏览

mysql - 插入零而不是空的空字符串

我的插入语句如下所示:

bar字段是这样创建的:

MySQL 版本:5.1。

空字符串不应该插入NULL吗?我不确定为什么我看到表中存储了一个零 (0)。

0 投票
2 回答
335 浏览

zero - 代数:删除相似项 [ x-(x*0.25)=3]

我试图自己解决这个问题,但在隔离 x 时遇到了麻烦:

在 algebra.com 上,它是这样转换的:

然后继续求解零:

[* 问题 1] 这个陈述是如何得出的?这似乎不像分布。

[* 问题 2] 为什么解为零?

[* 问题 3] 有没有更简单的方法来组合相似的值并求解方程?

0 投票
2 回答
483 浏览

php - 创建搜索功能,为什么这是“警告:第 29 行的 /path/test.php 中除以零查询为空”

我构建了一个简单的搜索功能,用于检查 mysql 表“products”中的“desc”列

这是我的结果代码,其中$find是已格式化为大写的用户输入字符串。

为什么我会收到以下错误:

第 29 行是这一行:

此查询在 php myadmin 中产生结果,但在我的脚本中使用时会出现错误。

有人对此有任何想法吗?

编辑:

这是删除了数据库连接信息的完整脚本:

0 投票
4 回答
12731 浏览

c - 比较 C 中的浮点数

我有一个double打印的 as0.000000并且我试图将它与 进行比较0.0f,但没有成功。为什么这里有区别?确定您的双倍是否为零的最可靠方法是什么?

0 投票
1 回答
254 浏览

android - Android:以0高度和内存消耗查看

例如,假设我有一个视图,并且我有一个算法,当它滚出屏幕时,它会导致视图的高度变为 0。此视图是否仍会消耗与全尺寸相同的内存量?我想我应该对 View.INVISIBLE 或 View.GONE 提出同样的问题?

0 投票
4 回答
51591 浏览

bash - 将前导零添加到 awk 变量

我在 bash 的“for”循环中有以下 awk 命令:

这会读取一系列名为 $pdb.pdb 的文件,并将它们拆分为名为 $pdb_1.pdb、$pdb_2.pdb、...、$pdb_21.pdb 等的文件。但是,我想生成具有名称的文件像 $pdb_01.pdb, $pdb_02.pdb, ..., $pdb_21.pdb,即向“文件”变量添加填充零。

我以不同的方式尝试使用 printf 没有成功。帮助将不胜感激。

0 投票
3 回答
994 浏览

perl - 为什么 Perl 认为存在一个不存在的多级散列元素?

抱歉,这似乎是一个基本问题,但我还是不明白。如果我有一个哈希,例如:

这怎么会是真的?

哈希中没有“foobar”级别,所以不应该导致错误吗?

TIA

0 投票
2 回答
987 浏览

go - 区分零的符号:-float64(0) 与 Go 中的 float64(0)

我想以不丢失符号信息的方式序列化浮点数。具体来说,我想将 IEEE-754 负零与常规零区分开来。

语言规范

浮点除以零的结果没有超出 IEEE-754 标准;是否发生运行时恐慌是特定于实现的。

这表明我做不到

我试过了math.Copysignmath.Signbit它说

Signbittrue如果 x 为负数或负零,则返回。

似乎不起作用

有任何想法吗?

编辑:

我提交了问题 2196来跟踪我认为两者之间令人困惑的区别

正如peterSO所建议的那样。

0 投票
3 回答
5573 浏览

javascript - javascript: trying to validate a number that has to be 4 digits to see if x<100 (ie 0100)

i hate asking for help as i would rather figure things for myself, or learn from what others have posted or already asked and solved. as such this is my first post on here!

This is either really really simple and im over complicating things or im going about it the wrong way. ive been searching everywhere for over 2 hours now. im not exactly a noob at js but i am still sort of new,i would say learning, ameteur?? anywho....

what i am trying to do:

so i have a number input box <input type="number" maxlength="4" .../> where a user will enter a 4 digit number (needs to be 4 digits) from 100 to 8000. so obviously 100 to 999 would be 0100 - 0999.

no problem so far, i can just use a string to pass the variable through as 4 digits.

the problem i have is that i need to add certain conditions to validate the input. one condition is bugging me. this is what i have so far:

(var x is already set to the form and number input box)

if (x=="" || isNaN(x) || x.length!== 4 && x< 0100 || x>8000)
{alert(please enter the correct amount!}
else {run rest of function}

so they all work execpt for:x<0100

if the user enters 99 it flags up because it is not 4 digits and if they enter 0099 it accepts it and runs the rest of the function code.

i just need it to alert for any amount from 0001 to 0099.

i found another post, How to make 8 digit number in javascript? , sort of relevant but the guy just wants to output a number padded with zeros. i think one of the solutions (code below) may be of use to me but as i am rather tired, brain frazzled and new i cant solve it:

var i = (100).toPrecision(8).split('.').reverse().join('');

i would start by editing it to:

var i = (x).toPrecision(4).split('.').reverse().join('');

(but would this only work if they typed 99 not 0099...if ya see what i mean)

i think it would be like a reverse of the code (split 0099 to 99.00) , and then the statement would be: if(.... && i<==99 || ....) but idk how to write it in JS...

ok so do ya see how this is messing with me mind, being a semi/quarterly noob and all!!

sorry its not formatted correctly and so long, i havent grasped how to use the code functions...

and thanks for your patience in reading this (if you got this far hehe).

THANKS IN ADVANCE

Slappy-x

0 投票
5 回答
955 浏览

c - 在 C 中,NULL 指针和指向 0 的指针有区别吗?如果是这样,是什么?

在 C 中,NULL 指针和指向 0 的指针有什么区别?