- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我搜索过与我有类似问题的其他人,但他们的代码都与我有很大不同。
当我用 g++ 编译以下代码时出现错误:
basketbOOP: malloc.c:2451: sYSMALLOc: 断言`(old_top == (((mbinptr) (((char *) &((av)->bins[((1) - 1) * 2]) ) - __builtin_offsetof (struct malloc_chunk, fd)))) && old_size == 0) || ((unsigned long) (old_size) >= (unsigned long)((((__builtin_offsetof (struct malloc_chunk, fd_nextsize))+((2 * (sizeof(size_t))) - 1)) & ~((2 * (sizeof (size_t))) - 1))) && ((old_top)->size & 0x1) && ((unsigned long)old_end & pagemask) == 0)' 失败。中止(核心转储)
我从不使用 free() 或类似函数,所以我认为这不是问题所在。
当我通过 valgrind 运行我的代码时,我得到“大小为 4 的无效写入”。然后是一些我不完全理解的胡言乱语,将我指向 Player 构造函数。
对于那些想知道这是我正在为帮助学习和理解 OOP 的作业编写的篮球模拟程序的人来说,很明显我不是要你为我编写我的代码,这只是一个错误我从来没有之前遇到过,需要修复它才能继续作业。
ps:很抱歉没有评论,我还没有抽出时间来:/pps:格式可能看起来很奇怪,因为我不得不缩进代码以使其全部显示为代码
感谢提前提供帮助的任何人!
#include <iostream>
#include <time.h>
#include <string>
#include "/home/craig/Programming/GeneralFunction (1).h"
using namespace std;
class player {
private:
int percent[3];
string name;
int shots[3];
int made[3];
bool MVP;
public:
player(int i){
for (int n = 0; n < 3; n++){
shots[i] = 0;
made[i] = 0;
}
MVP = false;
cout << "What is player #" << i << "'s name? ";
if (i != 1){
cin.clear();
cin.ignore();
}
getline(cin, name);
for (int n = 0; n < 3; n++){
cout << "What is " << name << "'s " << n+1 << "pt Shot Percentage? ";
cin >> percent[n];
if (percent[n] < 0){
cout << "Because you entered a Percent lower than 0%, the percent has been set to 0%. \n";
percent[n] = 0;
}
if (percent[n] > 100){
cout << "Because you entered a Percent greater than 100%, the percent has been set to 100%. \n";
percent[n] = 100;
}
}//for
}//player constructor
~player(){
cout << "Deleting " << name << endl;
}
void RandomPlay(int point){
switch(point){
case 0:
switch(rand()%2){
case 0:
cout << name << " is fouled. " << name << " takes the foul shot and... ";
break;
case 1:
cout << name << " takes a free throw and...";
break;
}//switch 2
break;//1 point
case 1:
switch(rand()%4){
case 0:
cout << name << " goes Up for a lay-up and...";
break;
case 1:
cout << name << " jumps for a SlamDunk and...";
break;
case 2:
cout << name << " shoots a jump shot and...";
break;
case 3:
cout << name << " attempts a field goal from inside the three point line and...";
break;
}//switch 4
break;//2 point
case 2:
switch(rand()%2){
case 0:
cout << name << " shoots a three pointer and...";
break;
case 1:
cout << name << " attempts a field goal from outside the three point line and...";
break;
}
break;//three point
}//switch point
}//RandomPlay
int TakeShot(){
int point = rand()%3;
RandomPlay(point);
shots[point]++;
if (rand()%100+1 <= percent[point]){
made[point]++;
return (point+1);
}
return 0;
}
void DispPlayerStats(){
cout << "PLayer: " << name << endl;
for (int i = 0; i < 3; i++){
cout << i+1 <<" point shot Percent: " << percent[i] << "%" << endl;
cout << i+1 << "pt Shots Taken: " << shots[i] << endl;
cout << i+1 <<"pt Shot Baskets Made: " << made[i] << endl;
}
if (MVP)
cout << name << " was the Most Valuable Player on the Team!" << endl;
}
};
class team {
private:
player *ptrPlayer[5];
string teamName;
static int score;
public:
team(int i){
cout << "What is this teams name? ";
if (i != 1){
cin.clear();
cin.ignore(10000, '\n');
}
getline(cin, teamName);
cout << "Enter Player info for Team " << teamName << ":" << endl;
for (int i = 0; i < 5; i++){
ptrPlayer[i] = new player(i+1);
}
}
string GetName(){
return teamName;
}
int Play(int score){
int oldScore = score;
score += ptrPlayer[rand()%5]->TakeShot();
if (oldScore == score)
cout << " misses!" << endl;
else
cout << " makes it! " << score - oldScore << " more points for Team " << teamName << "!" << endl;
return score;
}
};
int main(){
int score[2] = {0, 0};
SeedRand();
char PbP;
char enter = 1;
team *ptrTeam[2];
for (int i = 0; i < 2; i++){
cout << "ENTER INFO FOR TEAM " << i+1 << ":" << endl;
ptrTeam[i] = new team(i+1);
}
//CLS;
cout << "Would you like a Play by Play? [y/n] ";
cin >> PbP;
while (PbP != 'y' && PbP != 'Y' && PbP != 'N' && PbP != 'n'){
cout << "Invalid Choice: Would you like a Play by Play? [y/n] ";
cin >> PbP;
}
cout << "TIME TO PLAY BASKET BALL! " << endl;
cout << "The " << ptrTeam[0]->GetName() << " versus The " << ptrTeam[1]->GetName() << "!" << endl;
for (int quarter = 1; quarter < 5; quarter++){
//CLS;
cout << score[0] << " - " << score[1] << endl;
for (int pos = 0; pos < 30; pos++){
score[pos%2] = ptrTeam[pos%2]->Play(score[pos%2]);
if (PbP == 'y' || PbP == 'Y')
do {
cout << "Press x to continue." << endl;
cin >> enter;
}while(enter != 'x' || enter != 'X');
}
}//for quarter
return 0;
}
最佳答案
再看看这个:
for (int n = 0; n < 3; n++){
shots[i] = 0;
made[i] = 0;
}
关于c++ - 协助解决 c++ 中的内存分配错误,使用 g++ 的 linux,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27712565/
我遇到的问题是当针对不同元素多次调用该函数时。我相信我需要本地化所有变量,以便该函数可以用于多个元素。如果重要的话我还会调用 jquery 1.3。 如果我只调用 pageSlide 一次,一切都很好
我需要一些关于处理 Jframe 的作业的帮助。作业说“对于问题 27 到 31,请考虑以下类(class): import javax.swing.*; import java.awt.*; imp
我需要建议。我正在尝试使用 Tessnet2 库来识别图像文本。 图像由一个包含五个字符(字符和数字)的字符串组成。 我从 http://www.pixel-technology.com/freewa
我正在尝试制作一个成员(member)页面。对于排名,它显示数字,因此我制作了另一个具有排名 ID(1、2、3 等)的表,并为其添加了名称。这是我的代码。 Council of Balance me
我最近参加了计算机组织类(class),在其中学习二进制十六进制等,我自己尝试创建一个从 0 计数到输入数字的程序,但是计数是用二进制完成的。我遇到了一些麻烦,让自己困惑得难以置信,如果能得到一些澄清
这里是典型的学生,正在为作业的最后步骤寻求一些意见。非常感谢任何为我指明正确方向的帮助或提示。 我们的部分任务是实现急诊室优先队列。我卡住的部分的详细信息如下: Write a class calle
我正在尝试使用 jquery .animate 和 .hover 构建一个小的“膨胀”效果。 mousein 事件似乎工作得很好,但是,当鼠标移出时,边距会弹回到原始位置,动画也会回到原始状态。我需要
我似乎无法理解为什么索引返回未定义。目标是将数字放置在有序数组中的正确位置。我首先查找位置,但它返回未定义。 var arr = [3,7,9,12,16,20,31,43,50,55]; var v
我是 LINQ 新手,在查询方面需要一些帮助。 我需要来自 (tblResources) 的属于Anonymous 和Public 的所有Resources em> 资源组 (tblResourceG
我需要编写一个 for 循环来打印从 1000 到 4 的数字,这些数字是 6 的倍数,每行一个数字。 据我所知,我的结构是正确的。 public class multiples {
我在看似简单的 MySQL 查询中遇到了一些问题。我花了几天时间试图解决这个问题。我已经很接近了,但我无法复制所请求的输出。 以下是表格: create table Schools(ID int, S
Table1 Colum1 ID Name Size 1 File23 912831823 2 File29
我正在尝试了解 SQL 连接并尝试将它们应用到我正在构建的应用程序中。我正在执行一个查询,以根据特定游戏 ID 查找时间表上的“游戏记录”。但在这个比赛记录上;对于“h_team”和“v_team”;
我有两个表,一个有类别和子类别。每个类别和子类别都有一个 id,如果它是一个子类别,它有一个 topid != 0 来表示它是什么子类别。另一个表“markers”有一个字段“cat”,它与类别字段“
目前,我有一个 url 列表可以从中获取内容并且正在连续进行。我想将其更改为并行抓取它们。这是一个伪代码。请问是设计的声音吗?我知道 .start() 启动线程,但是,我的数据库没有更新。我需要使用
对于这个问题,我很抱歉,我还不是 django 和 meteorjs 的专家。我正在尝试使用此 django-ddp 技术,但在 https://github.com/commoncode/djang
请查看此网页 - http://dev.topyaps.com/how-awesome-are-you 这篇文章是由我开发的一个 wordpress 插件构建的。由于元素的 z 索引属性,我面临各种问
首先,感谢您的帮助,我希望我正确地遵循了您的指导方针,如果没有,我将非常乐意纠正它。 我需要一些帮助来完成我的任务。最终让它运行后,我的程序无法打开我需要的文件。该程序应该打开一个名为 prog10i
我是第一个计算机科学类的学生。我想弄清楚如何设置变量,以便它接受一个数字,该数字附加到我们老师设置的命令 ./integerProperties 。请查看我编写的代码,我可以使用一些帮助来了解如何获取
好吧,基本上我希望这些 block 像普通网页一样彼此紧挨着对齐,但我似乎无法做到这一点,因为第一个“左” block (正如它所暗示的那样位于左侧)确实向左对齐。其他“中心”和“右” block 不
我是一名优秀的程序员,十分优秀!