- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我创建了一个名为 Utype
的结构,其中包含不同的变量。如果我想要 t
,那么我将调用 Utype->t
。
现在,我正在使用 fgets
从输入文件中检索数据。
代码是:
#include "read_file.h"
int read_file(int argc, char* argv[], Utype* u_coarse){
int i;
int num_length = 1024;
FILE *input_file;
char buffer[num_length];
char *end_of_file;
char *lines = NULL;
char *lines_temp;
int num_time_segments=0;
double testest=0;
for (i=0; i<num_length; i++){
buffer[i]=' ';
}
input_file = fopen(argv[1], "r");
end_of_file = fgets(buffer, num_length, input_file);
while (end_of_file != NULL){
if (end_of_file[0]!= '\n' && end_of_file[0]!='%'){
lines = strtok(end_of_file, "=");
if (lines[strlen(lines)-1] == ' '){
lines[strlen(lines)-1] = '\0';
}
lines_temp = strtok(NULL, "=");
if (lines_temp[0] == ' '){
for (i=1; i<strlen(lines_temp); i++){
lines_temp[i-1] = lines_temp[i];
}
lines_temp[strlen(lines_temp)-2] = '\0';
}else{
lines_temp[strlen(lines_temp)-1] = '\0';
}
if (strcmp(lines, "T") == 0){
u_coarse->ultimateT = atof(lines_temp);
}
// printf("%g\n", testest);
}
}
// printf("%g\n", testest);
// u_coarse->burn_time = testest;
fclose(input_file);
return num_time_segments;
调用此read_file
函数后,我尝试打印
u_coarse->ultimateT
但是它说
Conditional jump or move depends on uninitialised value(s)
当我使用 Valgrind 时。一段时间以来,我一直在试图弄清楚为什么它会给我这个内存错误。任何帮助都感激不尽。
2015 年 5 月 31 日编辑:
感谢大家的参与。我附上了我对改进所做的调整后的代码。我仍然得到和以前一样的错误。 Valgrind 说:
==6485== Memcheck, a memory error detector
==6485== Copyright (C) 2002-2012, and GNU GPL'd, by Julian Seward et al.
==6485== Using Valgrind-3.8.1 and LibVEX; rerun with -h for copyright info
==6485== Command: ../bin/main.x ../ ../example_input.inp
==6485==
==6485== Conditional jump or move depends on uninitialised value(s)
==6485== at 0x3BFE249CF0: __printf_fp (in /lib64/libc-2.12.so)
==6485== by 0x3BFE24589F: vfprintf (in /lib64/libc-2.12.so)
==6485== by 0x3BFE24F189: printf (in /lib64/libc-2.12.so)
==6485== by 0x406CF1: main (main.c:23)
哪里:
main.c:23
是我打印出来的地方:
u_coarse->ultimateT
编辑代码:
#include "read_file.h"
int read_file(int argc, char* argv[], Utype* u_coarse){
int i;
int num_length = 1024;
FILE *input_file;
char buffer[num_length];
char *current_line;
char *lines = NULL;
char *lines_temp;
int num_time_segments=0;
size_t length;
size_t length_temp;
memset(buffer, ' ', sizeof(buffer) -1);
buffer[sizeof(buffer) - 1] = '\0';
input_file = fopen(argv[1], "r");
if (input_file == NULL){
perror("Error");
exit( EXIT_FAILURE);
}else{
while ( current_line = fgets(buffer, sizeof(buffer), input_file)){
if (current_line[0]!= '\n' && current_line[0]!='%'){
lines = strtok(current_line, "=");
if (lines == NULL){
perror("Error");
exit( EXIT_FAILURE );
}
length = strlen(lines);
if (lines[length-1] == ' '){
lines[length-1] = '\0';
}
lines_temp = strtok(NULL, "=");
if (lines_temp == NULL){
perror("Error");
exit( EXIT_FAILURE );
}
length_temp = strlen(lines_temp);
if (lines_temp[0] == ' '){
memmove(lines_temp, lines_temp +1, length_temp);
}else{
lines_temp[length_temp-1] = '\0';
}
if (strcmp(lines, "T") == 0){
u_coarse->ultimateT = atof(lines_temp);
}
}
}
}
return num_time_segments;
}
我的main.c文件是:
int main(int argc, char *argv[]) {
Utype *u_coarse = (Utype*)malloc(sizeof(Utype));
int num_time_segments = read_file(argc, argv, u_coarse);
printf("%g\n", u_coarse->ultimateT);
我的结构是:
typedef struct {
double ultimateT;
}Utype;
抱歉,我一直尽量不展示太多,因为这是为了研究。
最佳答案
你的代码有几个问题
您永远不会检查 strtok()
是否失败,这可能会导致 valgrind 报告它正在报告的内容,或者其他原因,因为它会导致未定义的行为。
你使用 strlen()
非常错误,strlen()
循环遍历字符串,这意味着在每次迭代中你循环相同的次数。你必须存储值并使用存储的值,它不仅更高效,还使你的代码更漂亮。
循环永远不会结束,因为您没有重新分配 end_of_file
顺便说一句,这是该变量的更糟糕的名称,您应该这样做
while (current_line = fgets(buffer, sizeof(buffer), input_file)) ...
当您可以使用 memset()
时,您正在用手动编写的循环填充 buffer
数组。
memset(buffer, ' ', sizeof(buffer) - 1);
buffer[sizeof(buffer) - 1] = '\0';
在句法上会做得更好,而且效率会更高,而且 nul
会终止 buffer
,而您没有这样做。
你永远不会检查 fopen()
是否成功,这也会导致未定义的行为,你必须检查每个函数调用是否按预期工作,其中大部分返回特殊值或设置特殊变量来指示问题何时发生,未能检查错误会使您的代码非常不稳定,如果我是您的老板,我会解雇您。别误会,我这么说是因为如果您听从我的建议,您将编写出更健壮的代码,并且遇到的问题也会少很多。
这个
for (i = 1 ; i < strlen(lines_temp) ; i++)
{
lines_temp[i - 1] = lines_temp[i];
}
lines_temp[strlen(lines_temp) - 2] = '\0';
不好的原因有几个
你不应该自己循环,使用memmove()
相反。
size_t length = strlen(lines_temp);
memmove(lines_temp, lines_temp + 1, length);
如果你自己写循环,最有效的方法是
for (i = 1 ; lines_temp[i] != 0 ; i++)
{
lines_temp[i - 1] = lines_temp[i];
}
lines_temp[i - 1] = '\0';
关于c - 值在 while 循环之外消失,即使保存到 malloc 变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30553208/
我的问题:非常具体。我正在尝试想出解析以下文本的最简单方法: ^^domain=domain_value^^version=version_value^^account_type=account_ty
好吧,这就是我的困境: 我正在为 Reddit 子版 block 开发常见问题解答机器人。我在 bool 逻辑方面遇到了麻烦,需要一双更有经验的眼睛(这是我在 Python 中的第一次冒险)。现在,该
它首先遍历所有 y 值,然后遍历所有 x 值。我需要 X 和 y 同时改变。 For x = 3 To lr + 1 For y = 2 To lr anyl.Cells(x, 1)
假设我有一个包含 2 列的 Excel 表格:单元格 A1 到 A10 中的日期和 B1 到 B10 中的值。 我想对五月日期的所有值求和。我有3种可能性: {=SUM((MONTH(A1:A10)=
如何转换 Z-score来自 Z-distribution (standard normal distribution, Gaussian distribution)到 p-value ?我还没有找到
我正在重写一些 Javascript 代码以在 Excel VBA 中工作。由于在这个网站上搜索,我已经设法翻译了几乎所有的 Javascript 代码!但是,有些代码我无法准确理解它在做什么。这是一
我遇到过包含日期格式的时间戳日期的情况。然后我想构建一个图表,显示“点击”项目的数量“每天”, //array declaration $array1 = array("Date" => 0); $a
我是scala的新手! 我的问题是,是否有包含成员的案例类 myItem:Option[String] 当我构造类时,我需要将字符串内容包装在: Option("some string") 要么 So
我正在用 PHP 创建一个登录系统。我需要用户使用他或她的用户名或电子邮件或电话号码登录然后使用密码。因为我知道在 Java 中我们会像 email==user^ username == user 这
我在 C++ 项目上使用 sqlite,但是当我在具有文本值的列上使用 WHERE 时出现问题 我创建了一个 sqlite 数据库: CREATE TABLE User( id INTEGER
当构造函数是显式时,它不用于隐式转换。在给定的代码片段中,构造函数被标记为 explicit。那为什么在 foo obj1(10.25); 情况下它可以工作,而在 foo obj2=10.25; 情况
我知道这是一个主观问题,所以如果需要关闭它,我深表歉意,但我觉得它经常出现,让我想知道是否普遍偏爱一种形式而不是另一种形式。 显然,最好的答案是“重构代码,这样你就不需要测试是否存在错误”,但有时没有
这两个 jQuery 选择器有什么区别? 以下是来自 w3schools.com 的定义: [attribute~=value] 选择器选择带有特定属性,其值包含特定字符串。 [attribute*=
为什么我们需要CSS [attribute|=value] Selector根本当 CSS3 [attribute*=value] Selector基本上完成相同的事情,浏览器兼容性几乎相似?是否存在
我正在解决 regx 问题。我已经有一个像这样的 regx [0-9]*([.][0-9]{2})。这是 amont 格式验证。现在,通过此验证,我想包括不应提供 0 金额。比如 10 是有效的,但
我正在研究计算机科学 A 考试的样题,但无法弄清楚为什么以下问题的正确答案是正确的。 考虑以下方法。 public static void mystery(List nums) { for (
好的,我正在编写一个 Perl 程序,它有一个我收集的值的哈希值(完全在一个完全独立的程序中)并提供给这个 Perl 脚本。这个散列是 (string,string) 的散列。 我想通过 3 种方式对
我有一个表数据如下,来自不同的表。仅当第三列具有值“债务”并且第一列(日期)具有最大值时,我才想从第四列中获取最大值。最终值基于 MAX(DATE) 而不是 MAX(PRICE)。所以用简单的语言来说
我有一个奇怪的情况,只有错误状态保存到数据库中。当“状态”应该为 true 时,我的查询仍然执行 false。 我有具有此功能的 Controller public function change_a
我有一个交易表(针对所需列进行了简化): id client_id value 1 1 200 2 2 150 3 1
我是一名优秀的程序员,十分优秀!