- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是编程新手。我尝试着看一堆类似的问题,但我觉得这些问题太高级了,以至于我无法理解,或者不能完全适用于我/我的情况。
我刚刚了解了二维数组,因此我正在对它们进行分配。 (该作业是关于电影分级的,它将解释我代码中变量/数组/等的名称)
我的函数之一应该将预定值分配给整数数组。但是,在此函数中,当我尝试向其初始化数组/分配整数时,将鼠标悬停在上面时,会得到一条红色的弯曲行,其中一条显示“初始化程序值太多”。
#include <iostream>
#include <cstdlib>
using namespace std;
//Global constants
const int NUM_REVIEWERS = 4; //Number of rows in reviews array
const int NUM_MOVIES = 6; //Number of columns in reviews array
//function prototype
void initialRatings(int[][NUM_MOVIES]);
int main()
{
// Variable declarations
int someArray[NUM_REVIEWERS][NUM_MOVIES]; // Ratings for reviewers
int choice;
initialRatings(someArray); //function call with actual argument passing in the array and the number of rows
return 0;
}
/***************************************************************************
function definition for initialRatings
this function sets all data elements in the 2-D array to the sample data
****************************************************************************/
void initialRatings(int array[][NUM_MOVIES])
{
array[NUM_REVIEWERS][NUM_MOVIES] = { {3, 1, 5, 2, 1, 5 },
{4, 2, 1, 4, 2, 4 },//the beginning of this row is where I get the error
{3, 1, 2, 4, 4, 1 },
{5, 1, 4, 2, 4, 2 } };
}
尝试编译时出现的确切错误是:
error C2440: '=': cannot convert from 'initializer list' to 'int'
和
message : The initializer contains too many elements
我正在使用Microsoft Visual Studio。我曾经尝试使用我的书/查找它,但是我很难找到想要的答案。随意纠正我讲错的任何话。我在这里学习!
最佳答案
代码的问题在于,您只能在变量声明中进行赋值,即在声明数组时只能对数组进行多次赋值。
array[NUM_REVIEWERS][NUM_MOVIES] =
{ {3, 1, 5, 2, 1, 5 },
{4, 2, 1, 4, 2, 4 },//the beginning of this row is where I get the error
{3, 1, 2, 4, 4, 1 },
{5, 1, 4, 2, 4, 2 } };
在您的情况下,变量
array
已经声明,因此是通过迭代或直接将值分配给每个位置将值分配给不同索引的唯一方法。
int array[NUM_REVIEWERS][NUM_MOVIES] =
{ {3, 1, 5, 2, 1, 5 },
{4, 2, 1, 4, 2, 4 },//the beginning of this row is where I get the error
{3, 1, 2, 4, 4, 1 },
{5, 1, 4, 2, 4, 2 } };
在变量声明中。
void initialRatings(int array[][NUM_MOVIES])
函数,则这里是一种替代方法。
void initialRatings(int array[NUM_REVIEWERS][NUM_MOVIES])
{
array[0][0] = 3;
array[0][1] = 1;
array[0][2] = 5;
array[0][3] = 2;
array[0][4] = 1;
array[0][5] = 5;
array[1][0] = 4;
array[1][1] = 2;
array[1][2] = 1;
array[1][3] = 4;
array[1][4] = 2;
array[1][5] = 4;
//... Do the same for the other rows
}
而且,如果要在调用
initialRatings
函数之后查看结果,请将每个位置的值打印到控制台。
int main()
{
// Variable declarations
int someArray[NUM_REVIEWERS][NUM_MOVIES]; // Ratings for reviewers
initialRatings(someArray); //function call with actual argument passing in the array and the number of rows
for (int row = 0; row < NUM_REVIEWERS; row++)
{
for (int column = 0; column < NUM_MOVIES; column++)
{
cout << someArray[row][column] << " "; // print the array value and a space to separate
// the values in each column
}
cout << endl; // add line break for each row
}
return 0;
}
关于c++ - 二维数组— “Too many initializer values”警告/错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63296606/
我正在尝试将 keras.initializers 引入我的网络,following this link : import keras from keras.optimizers import RMS
我正在为程序创建某种前端。为了启动程序,我使用了调用 CreateProcess(),其中接收到一个指向 STARTUPINFO 结构的指针。初始化我曾经做过的结构: STARTUPINFO star
我已经模板化了 gray_code 类,该类旨在存储一些无符号整数,其基础位以格雷码顺序存储。这里是: template struct gray_code { static_assert(st
我已经查看了之前所有与此标题类似的问题,但我找不到解决方案。所有错误都表明我没有初始化 ArrayList。我是否没有像 = new ArrayList 这样初始化 ArrayList? ? impo
当涉及到 Swift 类时,我对必需的初始化器和委托(delegate)的初始化器有点混淆。 正如您在下面的示例代码中所见,NewDog 可以通过两种方式中的一种进行初始化。如您所见,您可以通过在初始
几天来我一直在为一段代码苦苦挣扎。我在运行代码时收到的错误消息是: 错误:数组初始值设定项必须是初始值设定项列表 accountStore(int size = 0):accts(大小){} 这里似乎
我想返回一个数组,因为它是否被覆盖并不重要,我的方法是这样的: double * kryds(double linje_1[], double linje_2[]){ double x = linje
尝试在 C++ 中创建一个简单的 vector 时,出现以下错误: Non-aggregates cannot be initialized with initializer list. 我使用的代码
如何在构造函数中(在堆栈上)存储初始化列表所需的临时状态? 例如,实现这个构造函数…… // configabstraction.h #include class ConfigAbstraction
我正在尝试编写一个 native Node 插件,它枚举 Windows 机器上的所有窗口并将它们的标题数组返回给 JS userland。 但是我被这个错误难住了: C:\Program Files
#include using namespace std; struct TDate { int day, month, year; void Readfromkb() {
我很难弄清楚这段代码为何有效。我不应该收到“数组初始值设定项必须是初始值设定项列表”错误吗? #include class B { public: B() { std::cout << "B C
std::map m = { {"Marc G.", 123}, {"Zulija N.", 456}, {"John D.", 369} }; 在 Xcode 中,我将 C+
为了帮助你明白这一点,我给出了我的代码:(main.cpp),只涉及一个文件。 #include #include using namespace std; class test{ public
这在 VS2018 中有效,但在 2008 中无效,我不确定如何修复它。 #include #include int main() { std::map myMap = {
我有一个类: #include class Object { std::shared_ptr object_ptr; public: Object() {} template
我正在为 POD、STL 和复合类型(如数组)开发小型(漂亮)打印机。在这样做的同时,我也在摆弄初始化列表并遇到以下声明 std::vector arr{ { 10, 11, 12 }, { 20,
我正在使用解析实现模型。 这是我的代码。 import Foundation import UIKit import Parse class User { var objectId : String
我正在观看 Java 内存模型视频演示,作者说与 Lazy Initialization 相比,使用 Static Lazy Initialization 更好,我不清楚他说的是什么想说。 我想接触社
如果您查看 Backbone.js 的源代码,您会看到此模式的多种用途: this.initialize.apply(this, arguments); 例如,这里: var Router =
我是一名优秀的程序员,十分优秀!