- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我用两种方式声明了一个大小为 10 的数组(一种是直接赋值,另一种是将值赋给一个变量(这里是大小)并将其传递给数组。问题是第一种情况,当我超过限制时对数组大小有限制,但在第二种情况下,数组大小超出了但我仍然没有收到错误)我能知道发生了什么吗?提前致谢! :)
PS:当我看到地址时,一切都是有序的。
#include<iostream>
using namespace std;
//global declaration
int top =-1;
void push(int array[],int value){
top = top+1;
array[top] = value;
cout<<"Pushed "<<value<<" at "<< top << " position"<< endl;
}
void pop(){
top = top -1;
}
void Gettop(int size){
cout<< "top is at "<< top << " of "<<size<<endl;
}
bool isEmpty(){
if(top == -1){
return true;
}
}
int GetTopval(int array[]){
return array[top];
}
int main(){
int size=10;
int oldArray[size];
push(oldArray,2);
push(oldArray,23);
push(oldArray,22);
push(oldArray,24);
push(oldArray,242);
push(oldArray,22);
push(oldArray,21);
push(oldArray,2);
push(oldArray,23);
push(oldArray,22);
push(oldArray,24);
push(oldArray,242);
push(oldArray,22);
push(oldArray,21);
push(oldArray,242);
push(oldArray,22);
push(oldArray,21);
pop();
push(oldArray,211);
int value = GetTopval(oldArray);
cout<< "VAlue : "<< value<<endl;
cout<< "printing the Array: "<<endl;
for(int i=0;i<15;i++){
int *temp = &oldArray[i];
cout<<oldArray[i]<<" with i as "<< i <<endl;
cout<<"at address : "<< temp <<endl;
}
return 0;
}
另一种情况是:
#include<iostream>
using namespace std;
//global declaration
int top =-1;
void push(int array[],int value){
top = top+1;
array[top] = value;
cout<<"Pushed "<<value<<" at "<< top << " position"<< endl;
}
void pop(){
top = top -1;
}
void Gettop(int size){
cout<< "top is at "<< top << " of "<<size<<endl;
}
bool isEmpty(){
if(top == -1){
return true;
}
}
int GetTopval(int array[]){
return array[top];
}
int main(){
int size=10;
int oldArray[size];
push(oldArray,2);
push(oldArray,23);
push(oldArray,22);
push(oldArray,24);
push(oldArray,242);
push(oldArray,22);
push(oldArray,21);
push(oldArray,2);
push(oldArray,23);
push(oldArray,22);
push(oldArray,24);
push(oldArray,242);
push(oldArray,22);
push(oldArray,21);
push(oldArray,242);
push(oldArray,22);
push(oldArray,21);
pop();
push(oldArray,211);
int value = GetTopval(oldArray);
cout<< "VAlue : "<< value<<endl;
cout<< "printing the Array: "<<endl;
for(int i=0;i<15;i++){
int *temp = &oldArray[i];
cout<<oldArray[i]<<" with i as "<< i <<endl;
cout<<"at address : "<< temp <<endl;
}
return 0;
}
案例 2 的输出:
Pushed 2 at 0 position
Pushed 23 at 1 position
Pushed 22 at 2 position
Pushed 24 at 3 position
Pushed 242 at 4 position
Pushed 22 at 5 position
Pushed 21 at 6 position
Pushed 2 at 7 position
Pushed 23 at 8 position
Pushed 22 at 9 position
Pushed 24 at 10 position
Pushed 242 at 11 position
Pushed 22 at 12 position
Pushed 21 at 13 position
Pushed 242 at 14 position
Pushed 22 at 15 position
Pushed 21 at 16 position
Pushed 211 at 16 position
VAlue : 211
printing the Array:
2 with i as 0
at address : 0x7ffffbb707c0
23 with i as 1
at address : 0x7ffffbb707c4
22 with i as 2
at address : 0x7ffffbb707c8
24 with i as 3
at address : 0x7ffffbb707cc
242 with i as 4
at address : 0x7ffffbb707d0
22 with i as 5
at address : 0x7ffffbb707d4
21 with i as 6
at address : 0x7ffffbb707d8
2 with i as 7
at address : 0x7ffffbb707dc
23 with i as 8
at address : 0x7ffffbb707e0
22 with i as 9
at address : 0x7ffffbb707e4
24 with i as 10
at address : 0x7ffffbb707e8
242 with i as 11
at address : 0x7ffffbb707ec
22 with i as 12
at address : 0x7ffffbb707f0
13 with i as 13
at address : 0x7ffffbb707f4
242 with i as 14
at address : 0x7ffffbb707f8
案例 1 的输出:
Pushed 2 at 0 position
Pushed 23 at 1 position
Pushed 22 at 2 position
Pushed 24 at 3 position
Pushed 242 at 4 position
Pushed 22 at 5 position
Pushed 21 at 6 position
Pushed 2 at 7 position
Pushed 23 at 8 position
Pushed 22 at 9 position
Pushed 24 at 10 position
Pushed 242 at 11 position
Pushed 22 at 12 position
Pushed 21 at 13 position
Pushed 242 at 14 position
Pushed 22 at 15 position
Pushed 21 at 16 position
Pushed 211 at 16 position
VAlue : 211
printing the Array:
2 with i as 0
at address : 0x7fff8be0b780
23 with i as 1
at address : 0x7fff8be0b784
22 with i as 2
at address : 0x7fff8be0b788
24 with i as 3
at address : 0x7fff8be0b78c
242 with i as 4
at address : 0x7fff8be0b790
22 with i as 5
at address : 0x7fff8be0b794
21 with i as 6
at address : 0x7fff8be0b798
2 with i as 7
at address : 0x7fff8be0b79c
23 with i as 8
at address : 0x7fff8be0b7a0
22 with i as 9
at address : 0x7fff8be0b7a4
24 with i as 10
at address : 0x7fff8be0b7a8
242 with i as 11
at address : 0x7fff8be0b7ac
22 with i as 12
at address : 0x7fff8be0b7b0
21 with i as 13
at address : 0x7fff8be0b7b4
242 with i as 14
at address : 0x7fff8be0b7b8
*** stack smashing detected ***: <unknown> terminated
Aborted (core dumped)
最佳答案
没有“额外空间”。您有一个大小为 10
的数组,但您越界访问它并由此调用未定义的行为。
调用超过 10 次后:
void push(int array[],int value){
top = top+1;
array[top] = value;
cout<<"Pushed "<<value<<" at "<< top << " position"<< endl;
}
您将访问已经越界的 array[10]
。
简而言之,未定义行为意味着:编译器不需要警告您或产生错误,您的代码可能看起来有效,但在运行时可能会发生任何事情。 C++ 标准没有定义当你违反规则时会发生什么。
关于c++ - 这两个代码之间的区别(为什么我的数组占用额外的空间,即使我给了它一个限制),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56850047/
我正在阅读 SQL/92(我是新手),它经历了不同的数据类型。其中之一是CHAR,我当然知道它与java中的String非常相似,而不是java中的char。但我们假设它是 CHAR(1)。只有一个字
我的 mysqld 进程消耗了 232% 的 CPU,并且有 14000 多个连接 (我对这件事有点陌生,但关注 Stack Overflow 寻求帮助)。 顶部: PID USER P
Tomcat 服务器占用 100% 的 CPU,但仅在 PRD。我们无法在其他环境中重现这一点。 进行线程转储后,我们发现有一些线程处于等待/可运行状态,但无法找到我们如何找到根本原因。 你能帮忙吗?
我正在使用 Xcode、SpriteKit 和 Swift 构建我的第一款 iPhone 游戏。我对这些技术不熟悉,但我熟悉一般的编程概念。 这是我想用英语做的事情。我想让圆圈随机出现在屏幕上,然后开
我的套接字消耗了 100% 的计算机 CPU。有 150 个客户端每 30 秒异步向服务器发送消息。有谁知道如何解决这个问题?下面是我的 ServerSocket 类 public class Ser
一段时间后(有时几分钟,有时几天),我的应用开始消耗 100% 的 CPU。正如我从 VisualVM 看到的那样,它总是发生在 org.elasticsearch.common.netty.chan
在我的容器 Controller 中,用户可以平移 View 以切换到不同的 View 。当平移手势开始时,它会将新 View Controller 的 View 添加到 View 中:view.in
假设我在数据框中有两列,其中一列不完整。 df = pd.DataFrame({'a': [1, 2, 3, 4], 'b':[5, '', 6, '']}) df Out: a b
在Ubuntu 16.04 LTS中,pyteserract脚本吃得太高,导致系统间歇性重启。 top命令输出为 top - 21:23:31 up 27 min, 4 users, lo
我在具有 88 个内核和 60 个 reducer 的 hadoop 集群上运行 mapreduce 作业。由于某种原因,它只使用了 79 个集群核心。开始时它运行 79 个映射器,但当完成一半拆分时
我正在对机器上的所有用户进行查询,当它执行时,它会占用 100% 的 CPU 并锁定系统。我已经等了 5 分钟,但什么也没有发生。 在任务管理器中,wmiprvse.exe 占用了所有 CPU。当我终
我正在从套接字(通过 TCP 协议(protocol))读取消息,但我注意到 CPU 花费大量时间来调用 BufferedInputStream 的 available() 方法。这是我的代码:
我有 6 个线程。其中一个线程进入某个范围并打开“锁定”和所有其他线程线程正在等待并希望进入相同的范围。 现在,其他线程是否会获得 CPU 时间?其他线程是否在线程调度中?我知道所有其他线程都处于等待
我正在尝试创建一个社交媒体应用程序。但它需要大约 300mb 内存。所以我的主页上有 5 个包含帖子的 fragment 。总体内存使用量为 250-300mb 然后为了测试,我禁用了这些 fragm
我有一个带有一些 TextFormField 的表单,我想扩展最后一个 TextFormField 以占据屏幕的其余部分。最后一个 TextFormField 可以有多行文本。 我没能做到这一点,并尝
我收到磁盘几乎已满的警告,所以我运行 DaisyDisk .. 显然 Xcode 占用了 15GB 的空间: http://imgur.com/a/cTIZZ iOS 设备支持为 12.3 GB: h
我正在使用 Xcode Playground 研究 Swift 内存布局,我创建了一个带有 bool、double 和 int32 的结构,如下所示。基于这种结构,MemoryLayout 的打印结果
一旦执行“self.navigationController pushviewcontroller:vc animated:YES”,我的 CPU 就会达到 100%。我在 Stack Overflo
警告:CPU 使用率达到 100%,请小心。 Link to the jsFiddle 编写此脚本是为了设计动态蛇梯板。每次刷新页面时,都会创建一个新板。大多数时候所有的背景图像都不会出现,CPU 使
我不知道为什么,但是MYSQL给CPU带来了很大的负载。我必须每秒多次更新数据库,并且用户群正在不断增长。 一开始还好,但是现在 CPU 负载每天都在增加 这是日志中的慢速查询: *Query_tim
我是一名优秀的程序员,十分优秀!