- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个文件,每行一条记录(姓名、姓名、ID#、年级、年级、年级、年级、年级、年级)我必须根据 64 位或更少的数字进行验证:姓名、ID:9 位和 0 < 等级 < 100。我想存储在 tempArray[9] 中,验证后存储在 realArray[9][200] 中。我认为我的主要问题是当我尝试存储时。
tempArray 几乎在所有地方都用 std::cerr << tempArray[i] <<std::endl;
进行了测试它包含适当的数据。
但 realArray 也经过测试,仅包含第一条记录。我将 realArray 传递给以下函数,这样当我到达 storeData 时,我可以将 tempArray 传输到 realArray,并根据 lineNumber 使用列标记。
我知道可能有成吨的错误和“不要做”的编程,但我需要知道
1) 如果我想做的事情可以完成2)为什么我的 realArray 只得到第一条记录。
/之后添加:我知道它没有存储在 realArray 中,因为我的增量变量是 const int
.但是为什么它接受存储第一条记录对我来说没有意义。是因为行号初始化为零吗?如果 storeData 第一次接受 lineeNumber,为什么第二次不接受?/
代码:
#include <iostream>
#include <string>
#include <sstream>
#include <fstream>
#include <iomanip>
#include <stdlib.h>
#include "A4prototypes.h"
#include "search.h"
#include "sort.h"
using namespace std;
void getFile(std::string realArray[][200], const int ROWS)
{
std::string filename, line, token;
int row(0);
int lineNumber(0);
const int MAX_RECORDS (200);
const int TEMP_ROWS(9);
const int ZERO(0);
std::string tempArray[TEMP_ROWS];
std::cout << "Please enter the desired filename with it's extension:\t ";
std::cin >> filename;
std::ifstream input(filename.c_str(), std::ios::in);
if (input.is_open())
{
getline (input,line);
while (input.good() && lineNumber < MAX_RECORDS)
{
std::istringstream inputss (line);
while (getline(inputss, token, ',') && row < ROWS )
{
tempArray[row] = token;
row++;
}
row = ZERO;
/*I know I don't need to send the rows size of both of these arrays, but ... */
validateData (lineNumber, tempArray, TEMP_ROWS, realArray, ROWS);
lineNumber++;
getline (input,line);
}
}
else
{
std::cout << "The file did not open correctly. \n\nPlease enter a valid filename.\n";
}
if (lineNumber == MAX_RECORDS)
{
std::cout << "The maximum number of records to be read (" << MAX_RECORDS << ") has been reached.\n";
}
}
void validateData (int lineNumber, std::string tempArray[], const int ROW, std::string realArray[][200], const int ROWS)
{
int j(0);
//Validate Data functions...
// Pass tempArray and realArray along with lineNumber to update realArray.
storeData(lineNumber, tempArray, ROW, realArray ,ROWS);
}
int storeData(int record, std::string tempArray[], const int ROWS, std::string realArray[][200], const int ROW_SIZE)
{
int k(0);
std::string tempstr;
record-=1;
for (k; k < ROWS; k++)
{
tempstr = tempArray[k].data();
realArray[k][record]=tempstr;
}
return 0;
}
int main ()
{
/* There should be a pointer here that gets sent to getFile and incriminates with the record line, gets sent to store data and the
rest instead of just lineNumber,????...*/
int i(0), j(0);
const int ROWS(9);
const int COLUMNS(200);
/* int * const rows = &ROWS; => It says in the book you can do this and pointer isn't const, but you could do *rows =10, which is what I want to
do with the column, but it wont work... */
std::string realArray[ROWS][COLUMNS]={}; // Declare array for storing the data once it's been validated so I don't keep unecessary data.
// Pass realArray to getFile so I can have access to it from main but it can be changed by getFile was the plan so fn's dont have to all be related to main.
getFile(realArray,ROWS);
return 0;
}
这是头文件
#ifndef _h
#define _h
void getFile(std::string [][200], const int);
void validateData (int,std::string [], const int, std::string [][200], const int);
int storeData(int, std::string [], const int, std::string [][200], const int);
#endif
最佳答案
您的代码“示例”包含大量不会直接导致问题的代码(为什么数据没有按预期在 realArray
中结束)。在发布之前减少代码量会让您深入了解代码的哪些部分没有错误,甚至可能在您询问之前就发现错误。
更糟糕的是,您向我们倾倒了 500 行代码,它甚至没有编译(FThis.h
丢失,将所需的函数声明复制到示例中将是微不足道的。)
一旦我修复了声明并添加了 #include <stdlib.h>
所以我没有得到关于 atoi()
的诊断信息没有被宣布,我仍然收到一些关于这样的事情的警告......
char letterGrade('NR'); // character constants may only have *one* character
...或者这个...
int i(0);
int numOfArrayBox(5);
// This is broken on several levels; chiefly, "i < NUM_OF_ASSIGNMENTS" will
// never terminate the loop as it is followed by a comma, the effect of which
// is apparently lost to you as you make this mistake in several places.
for (i, numOfArrayBox; i < NUM_OF_ASSIGNMENTS, numOfArrayBox < MAX_NUM_OF_ARRAY_BOX; i++, numOfArrayBox++)
提示:
for ( int i = 0, int numOfArrayBox = 5; ( i < NUM_OF_ASSIGNMENTS ) && ( numOfArrayBox < MAX_NUM_OF_ARRAY_BOX ); ++i, ++numOfArrayBox )
...在这一点上,我有点不愿意花更多时间调试您的代码。尝试 Machete Debuggung和 asking questions the smart way .
但我有一个一般性的提示给你:
这是 C++,而不是 C。在 C++ 中,您不使用数组的数组,因为您组织代码和数据面向对象。
定义一个类(比如 class Student
),它包含数据(姓名、ID、成绩),在构造函数中验证数据,还包含操作该数据的函数( sumOfAssignments()
等) .).
当您需要一组学生时,请使用 <vector>
而不是数组:
#include <vector>
// ...
std::vector<Student> class;
Student input( "John", "Doe", 420012345, 64, 71, 89, 91, 88, 75 );
class.push_back( input );
最重要的是,您的问题与 realArray
无关不包含您想要的数据,您的问题是您仍然穿着 (C) 游泳衣跳入 C++ 深水。尝试将您的示例简化为在没有警告的情况下进行编译并清楚地显示单个问题的内容,我们将能够为您提供一个简洁的答案。
关于c++ - 数据未从 tempArray[] 正确存储到 realArray[][],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5533832/
我正在运行一个辅助角色,并检查 Azure 上托管的存储中是否存在数据。当我将连接字符串用于经典类型的存储时,我的代码可以正常工作,但是当我连接到 V2 Azure 存储时,它会抛出此异常。 “远程服
在我的应用程序的主页上,我正在进行 AJAX 调用以获取应用程序各个部分所需的大量数据。该调用如下所示: var url = "/Taxonomy/GetTaxonomyList/" $.getJSO
大家好,我正在尝试将我的商店导入我的 Vuex Route-Gard。 路由器/auth-guard.js import {store} from '../store' export default
我正在使用 C# 控制台应用程序 (.NET Core 3.1) 从 Azure Blob 存储读取大量图像文件并生成这些图像的缩略图。新图像将保存回 Azure,并将 Blob ID 存储在我们的数
我想将 Mlflow 设置为具有以下组件: 后端存储(本地):在本地使用 SQLite 数据库存储 Mlflow 实体(run_id、params、metrics...) 工件存储(远程):使用 Az
我正在使用 C# 控制台应用程序 (.NET Core 3.1) 从 Azure Blob 存储读取大量图像文件并生成这些图像的缩略图。新图像将保存回 Azure,并将 Blob ID 存储在我们的数
我想将 Mlflow 设置为具有以下组件: 后端存储(本地):在本地使用 SQLite 数据库存储 Mlflow 实体(run_id、params、metrics...) 工件存储(远程):使用 Az
我的 Windows 计算机上的本地文件夹中有一些图像。我想将所有图像上传到同一容器中的同一 blob。 我知道如何使用 Azure Storage SDKs 上传单个文件BlockBlobServi
我尝试发出 GET 请求来获取我的 Azure Blob 存储帐户的帐户详细信息,但每次都显示身份验证失败。谁能判断形成的 header 或签名字符串是否正确或是否存在其他问题? 代码如下: cons
这是用于编写 JSON 的 NeutralinoJS 存储 API。是否可以更新 JSON 文件(推送数据),而不仅仅是用新的 JS 对象覆盖数据。怎么做到的??? // Javascript
我有一个并行阶段设置,想知道是否可以在嵌套阶段之前运行脚本,所以像这样: stage('E2E-PR-CYPRESS') { when { allOf {
我想从命令行而不是从GUI列出VirtualBox VM的详细信息。我对存储细节特别感兴趣。 当我在GUI中单击VM时,可以看到包括存储部分在内的详细信息: 但是到目前为止,我还没有找到通过命令行执行
我有大约 3500 个防洪设施,我想将它们表示为一个网络来确定流动路径(本质上是一个有向图)。我目前正在使用 SqlServer 和 CTE 来递归检查所有节点及其上游组件,只要上游路径没有 fork
谁能告诉我 jquery data() 在哪里存储数据以及何时删除以及如何删除? 如果我用它来存储ajax调用结果,会有性能问题吗? 例如: $("body").data("test", { myDa
有人可以建议如何为 Firebase 存储中的文件设置备份。我能够备份数据库,但不确定如何为 firebase 存储中的文件(我有图像)设置定期备份。 最佳答案 如何进行 Firebase 存储的本地
我最近开始使用 firebase 存储和 firebase 功能。现在我一直在开发从功能到存储的文件上传。 我已经让它工作了(上传完成并且文件出现在存储部分),但是,图像永远保持这样(永远在右侧加载)
我想只允许用户将文件上传到他们自己的存储桶中,最大文件大小为 1MB,仍然允许他们删除文件。我添加了以下内容: match /myusers/{userId}/{allPaths=**} { al
使用生命周期管理策略将容器的内容从冷访问层移动到存档。我正在尝试以下策略,希望它能在一天后将该容器中的所有文件移动到存档层,但事实并非如此在职的。我设置了选择标准“一天未使用后”。 这是 json 代
对于连接到 Azure 存储端点,有 http 和 https 两个选项。 第一。 https 会带来开销,可能是 5%-10%,但我不支付同一个数据中心的费用。 第二。 http 更快,但 Auth
有人可以帮我理解这一点吗?我创建了Virtual Machine in Azure running Windows Server 2012 。我注意到 Azure 自动创建了一个存储帐户。当我进入该存
我是一名优秀的程序员,十分优秀!