- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道指针是一个被广泛讨论的话题。我做了很多研究来尝试解决这个问题,但是一切都让我走到了死胡同。
我的作业要求我创建一个记录单个测试分数的类。如果已经记录了测试分数并且新分数更高,则覆盖它。如果它已被记录并且新分数较低,则什么都不做。如果没有记录,请记录下来。
这是我目前所拥有的:
// CIS 235 exercise 7
#include <iostream>
using namespace::std;
// declare a class for recording a test score
// the data will be pointer to an integer, rather than an integer
//
// - this exercise is designed to show how to work with pointer memory
// - of course, we would NOT normally use a pointer for just an integer
// - to illustrate the concepts, but keep the implementation simple,
// integer data was used. The general case would be object data,
// not integer data
class testScore
{
public:
// declare a default constructor - the pointer should be set to NULL
testScore();
// declare a function that returns a bool, indicating if the test has been taken
bool hasTestTaken();
// declare a function to record the test score, the parameter will be an integer
// use the following rules
// - if no test has been taken, allocate memory and record the score
// - if a test has been taken and the parameter is less than or equal to
// the score, do nothing
// - if the test has been taken and the parameter is higher than the score,
// - release the old memory
// - allocate new memory
// - record the score
void recordScore(int *myScore);
// declare a function to print the score to an ostream parameter
// if the test has not been taken, send an appropriate message to the ostream
// otherwise print the score
void printScore(ostream &out);
// declare the destructor
// be CAREFUL, you will need an if statement in your destructor
~testScore();
private:
// declare the data needed to implement the class
bool testTaken;
int *score;
};
// write the 5 member functions
testScore::testScore() : score(NULL)
{
// declare a default constructor - the pointer should be set to NULL
}
bool testScore::hasTestTaken()
{
// declare a function that returns a bool, indicating if the test has been taken
return testTaken;
}
void testScore::recordScore(int *myScore)
{
if(testTaken == false)
{
testTaken = true;
*score = *myScore;
}
else if(testTaken == true && *myScore > *score)
{
score = NULL;
delete score;
score = new int;
*score = *myScore;
}
}
void testScore::printScore(ostream& out)
{
// declare a function to print the score to an ostream parameter
// if the test has not been taken, send an appropriate message to the ostream
// otherwise print the score
if(testTaken)
{
out << *score << endl;
}
else
out << "The test has not been taken!" << endl;
}
testScore::~testScore()
{
// declare the destructor
// be CAREFUL, you will need an if statement in your destructor
if(score != NULL)
{
score = NULL;
delete score;
}
else
delete score;
}
// test the class member functions
// - declare an object, but do NOT record a score for the object
// - declare a second object and record the scores of 83, 78, 92
// use appropriate member print functions to verify your code
//int abc = 83;
int abc = 0;
int main()
{
// int abc = 0;
// int * score2;
// myTestScore = new int;
// *myTestScore = 83;
testScore firstScore;
firstScore.printScore(cout);
testScore secondScore;
// secondScore.recordScore(&abc);
secondScore.recordScore(&abc);
// secondScore.printScore(cout);
// *myTestScore = 78;
// secondScore.recordScore(myTestScore);
// secondScore.printScore(cout);
// *myTestScore = 92;
// secondScore.recordScore(myTestScore);
// secondScore.printScore(cout);
system("PAUSE");
return 0;
}
Pointers 对我来说是相当新鲜的东西……我查过,查过,查过,但我似乎总是弄错了。
知道这一点后,我知道我的 recordScore 函数可能做错了什么,但我不知道是什么。
我现在的主要问题是 firstScore 运行良好(耶!我做对了......也许吧)但是,secondScore 不会记录分数。我尝试了几种不同的方法。
我把 int abc = 0;在 int main() 之上
我把 int abc = 0;在 int main() 内部但在其他任何事情之前
如果我的 int main() 看起来像这样,这也会崩溃:
int main()
{
int abc = 0;
testScore firstScore;
firstScore.printScore(cout);
system("PAUSE");
return 0;
}
我也不知道为什么T.T
我也试过:
声明
int *myTestScore;
myTestScore = new int;
*myTestScore = 83;
在 main() 内部但在其他任何事情之前,通过以下方式将 myTestScore 传递给 recordScore:
&myTestScore
编译错误:没有匹配函数调用'testScore::recordScore(int**);在 secondScore.recordScore 行。
*myTestScore
编译错误:从“int”到“int*”的无效转换在 secondScore.recordScore 行。
myTestScore
没有编译错误,在任何输出到控制台之前运行时崩溃
我试过声明:
int *myTestScore = 83;
在 int main() 内部编译错误:从“int”到“int*”的无效转换在 int *myTestScore = 83 行。
我还尝试了各种方法来将 recordScore 更改为使用 & 和 * 以及两者都不使用以及两者的不同组合。
我现在对尝试的事情没有想法,甚至在研究之后我也想不出任何东西。我试过问我的教授(一周以来,在线类(class)),给她打电话,给她发电子邮件,但她没有回答我提出的任何问题,甚至没有要求会面。
我觉得这里有一些简单的事情我没有掌握,我真的很感谢任何人能给我的帮助来解决这个问题。
非常感谢您的宝贵时间。
变化:
testScore::testScore() : score(NULL), testTaken(false) // didnt change because instructor instructions, but did move testTaken up cause that is where it should be
{
// declare a default constructor - the pointer should be set to NULL
}
void testScore::recordScore(int myScore)
{
if(testTaken == false)
{
testTaken = true;
score = &myScore;
cout << *score << endl; //this prints correctly, 0
}
else if(testTaken == true && myScore > *score)
{
//removed the score = NULL to avoid a memory leak (I think this is correct now?)
delete score;
score = new int;
score = &myScore;
}
}
void testScore::printScore(ostream& out)//no changes, just easier to access to you dont have to keep scrolling up
{
// declare a function to print the score to an ostream parameter
// if the test has not been taken, send an appropriate message to the ostream
// otherwise print the score
if(testTaken)
{
out << *score << endl; //outputs incorrect 4469696
}
else
out << "The test has not been taken!" << endl;
}
int main()
{
int abc = 0;
testScore firstScore;
firstScore.printScore(cout);
testScore secondScore;
secondScore.recordScore(abc);
secondScore.printScore(cout);
system("PAUSE");
return 0;
}
输出:此测试未参加!04469696按任意键继续...
最终工作产品:
// CIS 235 exercise 7
#include <iostream>
using namespace::std;
// declare a class for recording a test score
// the data will be pointer to an integer, rather than an integer
//
// - this exercise is designed to show how to work with pointer memory
// - of course, we would NOT normally use a pointer for just an integer
// - to illustrate the concepts, but keep the implementation simple,
// integer data was used. The general case would be object data,
// not integer data
class testScore
{
public:
// declare a default constructor - the pointer should be set to NULL
testScore();
// declare a function that returns a bool, indicating if the test has been taken
bool hasTestTaken();
// declare a function to record the test score, the parameter will be an integer
// use the following rules
// - if no test has been taken, allocate memory and record the score
// - if a test has been taken and the parameter is less than or equal to
// the score, do nothing
// - if the test has been taken and the parameter is higher than the score,
// - release the old memory
// - allocate new memory
// - record the score
void recordScore(int * myScore);
// declare a function to print the score to an ostream parameter
// if the test has not been taken, send an appropriate message to the ostream
// otherwise print the score
void printScore(ostream &out);
// declare the destructor
// be CAREFUL, you will need an if statement in your destructor
~testScore();
private:
// declare the data needed to implement the class
bool testTaken;
int *score;
};
// write the 5 member functions
testScore::testScore() : score(NULL), testTaken(false)
{
// declare a default constructor - the pointer should be set to NULL
}
bool testScore::hasTestTaken()
{
// declare a function that returns a bool, indicating if the test has been taken
return testTaken;
}
void testScore::recordScore(int * myScore)
{
if(testTaken == false)
{
score = new int;
testTaken = true;
*score = *myScore;
}
else if(testTaken == true && *myScore > *score)
{
delete score;
score = new int;
*score = *myScore;
}
}
void testScore::printScore(ostream& out)
{
// declare a function to print the score to an ostream parameter
// if the test has not been taken, send an appropriate message to the ostream
// otherwise print the score
if(testTaken)
{
out << *score << endl;
}
else
out << "The test has not been taken!" << endl;
}
testScore::~testScore()
{
// declare the destructor
// be CAREFUL, you will need an if statement in your destructor
if(score != NULL)
{
delete score;
}
}
// test the class member functions
// - declare an object, but do NOT record a score for the object
// - declare a second object and record the scores of 83, 78, 92
// use appropriate member print functions to verify your code
int main()
{
int abc = 83;
testScore firstScore;
firstScore.printScore(cout);
testScore secondScore;
secondScore.recordScore(&abc);
secondScore.printScore(cout);
abc = 78;
secondScore.recordScore(&abc);
secondScore.printScore(cout);
abc = 92;
secondScore.recordScore(&abc);
secondScore.printScore(cout);
system("PAUSE");
return 0;
}
非常感谢,我实际上从中学到了很多东西,还有一些新术语:)
最佳答案
主要问题是在默认构造函数中,您将 NULL
分配给 score,因此指针将指向无效内存。所以,当你调用recordStore时,当程序走到这条指令时:
*score = *myScore;
它会导致段错误,当您尝试覆盖您的程序未使用的内存部分时会发生错误。
程序不会在 printScore 中崩溃,因为读取无效指针不会出错,但会读取垃圾数据。
编辑:根据您的分配,如果尚未进行测试,则必须在 recordStore 中分配指针,因此在 recordStore 中,更改此部分:
if(testTaken == false)
{
testTaken = true;
*score = *myScore;
}
为此:
if(testTaken == false)
{
score = new int;
testTaken = true;
*score = *myScore;
}
此外,当您执行delete
部分时,您首先将指针分配给NULL,然后再将其删除;所以程序会尝试删除NULL
指针(这不会导致错误),而用于score
的内存没有释放,造成内存泄漏。
关于C++从main()通过类函数传递指针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19348840/
因此,当使用“智能”时,当我想创建一个类时,它还会创建另外两个函数(不确定我是否正确调用了它们): class main { private: /* data */ public: m
我确实知道 C/C++ 和 Java 中使用的 main() 方法,但由于 main() 是用户定义的(因为 main() 中的代码是由用户定义的,它不能是预定义的方法) & 在 C/C++ 中,ma
这个问题在这里已经有了答案: What is a NullPointerException, and how do I fix it? (12 个答案) 关闭 7 年前。 我意识到这是一个常见错误,
您好,我是 jquery 和 javascript 的新手。我想做的是我有 3 个独立的 Main-Divs ex main-div1, main-div2, main-div-3 它们都是一个大盒子
我知道以前曾有人问过有关此错误的问题,但我的情况与其他人不同。我正在编写计算数据集的平均值、方差和标准差的代码。编译代码时我没有收到任何错误,但是当我尝试运行代码时,我收到如下错误: Exceptio
这个问题已经有答案了: What should main() return in C and C++? (19 个回答) Why is the type of the main function in
无效的输入流不起作用 - 每次我给出负的月份值时,它都会返回此异常。 代码: import java.util.Scanner; public class Main { public stat
我在 main() 中调用 main(),递归 10 次。现在,在使用 gdb (bt/backtrace) 进行调试时,我没有看到 main() 的多个帧。为什么? #include int mai
我有一个类 - A - 没有方法,只有主要方法。 在其他类(class) - B - 我需要调用那个 main.做什么最好?从使用的资源、时间和功耗以及效率来看? 从类 A 创建一个“a”对象并执行
鉴于 documentation以及对 earlier question 的评论,根据要求,我制作了一个最小的可重现示例,演示了这两个语句之间的区别: my %*SUB-MAIN-OPTS = :na
我有一个在 main 中声明并初始化的数组,名为 Edges。 我还在 main 中声明了一些访问名为 Edges 的数组的函数。 代码编译并运行。 为什么它有效?我认为 main 中声明的变量不是全
如果定义内容主要部分的最具语义性和可访问性的方式是标准,那么使用 ARIA 地标似乎是多余的元素。正在添加 role="main"到元素真的有必要吗? 最佳答案 并非所有现代浏览器都已经映射了 ari
我是 C 语言的新手(6 小时前开始),我知道有大量的在线引用资料,我应该(并且将会)详细查看,但现在,我有紧急情况需要帮助。我有一个包含以下文件的项目文件夹: boundary_val.c boun
我正在审查许多不同的 Java 程序,并试图弄清楚如何只更新一次而不是两次更新对程序名称的引用。有没有办法在单个终端命令中使用变量? :S 我试图改进的命令是这样的形式: javac Main.jav
我已经创建了一个工作线程, Thread thread= new Thread(runnable); thread.start(); 我在工作线程中打印这个; Log.d("SessionTh
import java.awt.*; import java.awt.event.*; import java.io.*; import java.lang.*; public class Main
这是我的 Main.java,它位于服务器套接字“get().logger().tag();”之后的部分我已经在实例中添加了所有这些,我真的不确定它出了什么问题。 public class Main
我在 http://www.hackerearth.com/problem/algorithm/roys-life-cycle/ 上测试了我的程序。但是,我总是收到错误:在类 ActivityTime
我想要一个脚本来运行从模块导出的子例程,导出的子程序在脚本中作为 MAIN 运行。该子例程做了我想做的所有事情,除了它返回结果而不是打印它。 RUN-MAIN 似乎实现了我的大部分目标,但我不确定如何
java中有什么具体原因吗,main方法应该是小写字母 是的“主要”和“主要” 编译完成 public class ManiMethod { public static void main(S
我是一名优秀的程序员,十分优秀!