- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试使用指针算法来访问指针位置,例如数组。为了测试相同的内容,我写了下面的代码。
现在,我可以看到指针算法正在运行,因为我可以看到打印了递增的指针地址。但是当我取消引用该指针位置以设置一些值时,它就不起作用了。
根据我到目前为止对 C 和指针的了解,我无法解释为什么指针解除引用不起作用。如果我无法获得增加的指针位置/地址,那么至少我会明白指针算法不起作用,但当它起作用时,为什么指针解除引用不起作用。
代码:
#include<stdio.h>
#include<stdlib.h>
int **DoublePtr;
void doublePointerTest();
int main(void)
{
doublePointerTest();
}
void doublePointerTest()
{
DoublePtr = malloc(sizeof(int*));
*DoublePtr = malloc(sizeof(int) * 10);
printf("Address of DoublePtr = %p\n", DoublePtr);
printf("Address of *DoublePtr = %p\n", *DoublePtr);
**DoublePtr = 100;
*DoublePtr += 1;
printf("+1 Address of *DoublePtr = %p\n", *DoublePtr);
**DoublePtr = 1;
*(*DoublePtr += 1) = 2;
printf("+2 Address of *DoublePtr = %p\n", *DoublePtr);
//**DoublePtr = 2;
*DoublePtr += 1;
printf("+3 Address of *DoublePtr = %p\n", *DoublePtr);
**DoublePtr = 3;
// *DoublePtr[4] = 4;
// *DoublePtr[8] = 8;
// *DoublePtr[3] = 3;
// *DoublePtr[2] = 2;
for(int i = 0; i < 10; i++, *DoublePtr += 1)
{
printf("%d. ", i);
printf("%d\n", **DoublePtr);
}
}
O/P:
jharvard@appliance (~/psets/pset5/pset5_working): clang testing.c -o testing
jharvard@appliance (~/psets/pset5/pset5_working): ./testing
Address of DoublePtr = 0x8cd4008
Address of *DoublePtr = 0x8cd4018
+1 Address of *DoublePtr = 0x8cd401c
+2 Address of *DoublePtr = 0x8cd4020
+3 Address of *DoublePtr = 0x8cd4024
0. 3
1. 0
2. 0
3. 0
4. 0
5. 0
6. 0
7. 0
8. 135105
9. 0
jharvard@appliance (~/psets/pset5/pset5_working):
根据评论和回答,将我的代码从 DoublePtr = malloc(sizeof(int));
更正为 DoublePtr = malloc(sizeof(int*));
和经过测试,但结果相同。
最佳答案
您的代码将 100,1,2,3
写入 10 个 malloc 的前 4 个位置。
然后您打印出从 3
开始的接下来 10 个位置的内容:您看到 3
,然后是 6 个未初始化的值,然后是缓冲区溢出。
您永远不会打印前 3 个位置的值。您取消引用以设置该值是有效的,但您从未输出结果。
也许您打算在打印前将 *DoublePtr
设置回其原始值?
关于c - 指针算术有效,但指针解除引用无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35493252/
如何确定操作表何时已关闭或已被驳回? 我关注了这个主题Fitting a UIDatePicker into a UIActionSheet并向操作表添加了选择器 View 。但是,当操作表仍处于打开
在关闭 UIActivityViewController 后如何调用操作?例如,如果我想在用户关闭 UIActivityViewController 后更改一段文本。 谢谢大家! 最佳答案 使用它的完
我的代码中有以下几行: func searchBarTextDidBeginEditing(searchBar: UISearchBar) { searchBar.showsCancelBut
像这样使用 UIAlertController 时: var alert = UIAlertController(title: "Core Location", message: "Loca
我正在使用 UITableViewController 来显示要编辑的项目列表。点击一行后,用户将转到 View Controller 以编辑数据。 当他们通过默认 <(后退)按钮退出编辑屏幕时,我想
我有一个自定义的 UIImagePickerController ,它工作得很好,只是我面临一个我认为应该相当简单的问题 - 我只是还没有找到解决方案。 触摸我自定义添加的“照片”按钮后,我将其定位到
我在显示 UIMenuController 的表格 View 单元格上实现了一个长按手势识别器,当菜单显示时,相应的表格 View 单元格被选中,这是我的要求。但问题是当我触及 UIMenuContr
我有: df = pd.DataFrame({'col1': ['asdf', 'xy', 'q'], 'col2': [1, 2, 3]}) col1 col2 0 asdf 1
我正在尝试解除实时事件的绑定(bind)(已尝试使用 .live 和 .delegate)。 当我想解除绑定(bind)时,我有 3 个不同的选项:解除绑定(bind) "click"、解除绑定(bi
我正在使用 spock、geb 和 WebDriver 编写测试脚本。该脚本在不安全的页面上提交表单。该页面提交到安全的 HTTPS URL。 Firefox 对此显示警告,特别是: 这会导致以下错误
我有两个 s 和每个 ng-repeat,但都对其子元素执行相同的操作,如下所示: {{item.name}} {{item.name}} 想象一下,有两种类型的数据集,要渲染
我构建了一个通过 APIHiJack 连接到 Win32 TextOut 函数的应用程序。当应用程序启动时,DLL 将按预期注入(inject),并且我的新 TextOut 函数被成功调用。 目前,关
我遇到了一次非常奇怪的崩溃,这是回溯。 * thread #1: tid = 0x2403, 0x3379516c CoreFoundation`CFHash + 8, stop reason = E
我有一个 FirstViewController 和一个 SecondViewController。它们的 UINavigationBar 有不同的颜色。当我显示 SecondViewControll
抱歉,如果我在文档中遗漏了一些内容,但无论如何我都找不到阻止在 SweetAlert 2 中关闭对话框的方法,这些将不起作用: await Swal.fire({
有没有人见过这个?在 iPad 模拟器中,我有一个 About View Controller 。我想以模态方式呈现它,并让用户单击关闭按钮。 更复杂的是,我有一个主视图 Controller ,它显
我有 3 个 View Controller - BaseViewController->AviewController->BviewController。 AviewController 以模态方式
如果我在对象上有一个事件聚合器, eventAggregator: _.extend({}, Backbone.Events), 对于模态视图,我基本上让模态视图的呈现者监听模态视图的事件。 this
我有几个 View Controller 。如果 Alert View 被确认,我需要返回到第一个 View Controller。如果没有 unwind Segue,我会这样做: @IBAction
我有一个为 SharePoint 编写的 Accordion 菜单: parent.click(function(event) { event.preventDefault(); va
我是一名优秀的程序员,十分优秀!