在C结构响应中动态分配数组不正确?

如何解决在C结构响应中动态分配数组不正确?

我正在尝试在C结构中创建两个动态分配的数组

typedef struct {
    int count1;
    int count2;
    int *array1;
    int *array2;
    int check;
} __attribute__ ((packed)) test_T;

int main() {
    int data[8] = { 2,3,20,21,30,31,32,100 };

    test_T *s_t = malloc(sizeof(s_t));
    s_t->array1 = malloc(sizeof(int) * s_t->count1);
    s_t->array2 = malloc(sizeof(int) * s_t->count2);

    s_t = (test_T *)data;
 
    printf("%d\n",s_t->check);

    return 0;
}

array1array2的大小都是未知的,分别取决于count1count2

我的结构数据在main函数中定义,并将数据放入我的结构中。 问题是结构中的check成员始终是32,但我希望此值为100。 任何帮助表示赞赏。

解决方法

您的代码中有很多问题:

  • tester是系统特定的hack。除非您知道自己在做什么,并且认为它是绝对必要的,否则不要使用此类不可携带的东西。

  • 第一个__attribute__((packed))的大小不正确:malloc()应该

    test_T *s_t = malloc(sizeof(s_t));
  • test_T *s_t = malloc(sizeof(*s_t)); s_t->count1在使用前必须被初始化。 s_t->count2返回的对象未初始化,因此所有结构成员都未初始化。目前尚不清楚这些成员的初始值应该是多少,似乎是8。

  • malloc()未初始化。如果这是期望值,则应将其初始化为s_t->check

  • 100是虚假的:如果需要,您应该将s_t = (test_T *)data;中的值复制到数组中。

这是修改后的版本:

data
,

您的代码中存在多个错误,但是在此答案中,只有一个对其中之一做出了响应:指针与数组

我认为您误解了指针和结构的工作方式。 array1是一个指针。在AMD64上,指针始终为8个字节。这并不取决于他们指向的位置。在AMD64上,当编译器未添加任何填充时,您的Test_T将使用28个字节。 当您分配内存并将指针存储在array1中时,这意味着array1现在指向您用malloc()保留的内存区域。 array1array2是数组,它们是指针。也许您会为他们选择一个不太容易引起误解的名称?

array1和array2的大小均未知

这是错误的。它们是指针,它们的大小是已知的。所指向的存储区域的大小是未知的。该内存区域可以用作数组,array1不是数组。

如果要在结构中包含变量数组,则必须将数组放置为最后一个没有大小信息的元素,当为结构保留内存时,必须在数组的末尾和结构中添加空间。结构中只能放置一个变量数组。 所有其他都需要添加指针。

赞:

#include <stdlib.h>

struct Test_T
{
    int someOtherData;
    size_t count;
    int variableArray[];
};

int main(void)
{
    size_t count=5;
    struct Test_T *s_t=malloc(sizeof(*s_t)+sizeof(int)*count);
    //skipped malloc error handling,but you should do that in real programs 
    s_t->count=count;
    // .. some more code should be placed here ...
    free(s_t); //do not forget to free your allocated memory
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


依赖报错 idea导入项目后依赖报错,解决方案:https://blog.csdn.net/weixin_42420249/article/details/81191861 依赖版本报错:更换其他版本 无法下载依赖可参考:https://blog.csdn.net/weixin_42628809/a
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下 2021-12-03 13:33:33.927 ERROR 7228 [ main] o.s.b.d.LoggingFailureAnalysisReporter : *************************** APPL
错误1:gradle项目控制台输出为乱码 # 解决方案:https://blog.csdn.net/weixin_43501566/article/details/112482302 # 在gradle-wrapper.properties 添加以下内容 org.gradle.jvmargs=-Df
错误还原:在查询的过程中,传入的workType为0时,该条件不起作用 &lt;select id=&quot;xxx&quot;&gt; SELECT di.id, di.name, di.work_type, di.updated... &lt;where&gt; &lt;if test=&qu
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct redisServer’没有名为‘server_cpulist’的成员 redisSetCpuAffinity(server.server_cpulist); ^ server.c: 在函数‘hasActiveC
解决方案1 1、改项目中.idea/workspace.xml配置文件,增加dynamic.classpath参数 2、搜索PropertiesComponent,添加如下 &lt;property name=&quot;dynamic.classpath&quot; value=&quot;tru
删除根组件app.vue中的默认代码后报错:Module Error (from ./node_modules/eslint-loader/index.js): 解决方案:关闭ESlint代码检测,在项目根目录创建vue.config.js,在文件中添加 module.exports = { lin
查看spark默认的python版本 [root@master day27]# pyspark /home/software/spark-2.3.4-bin-hadoop2.7/conf/spark-env.sh: line 2: /usr/local/hadoop/bin/hadoop: No s
使用本地python环境可以成功执行 import pandas as pd import matplotlib.pyplot as plt # 设置字体 plt.rcParams[&#39;font.sans-serif&#39;] = [&#39;SimHei&#39;] # 能正确显示负号 p
错误1:Request method ‘DELETE‘ not supported 错误还原:controller层有一个接口,访问该接口时报错:Request method ‘DELETE‘ not supported 错误原因:没有接收到前端传入的参数,修改为如下 参考 错误2:cannot r
错误1:启动docker镜像时报错:Error response from daemon: driver failed programming external connectivity on endpoint quirky_allen 解决方法:重启docker -&gt; systemctl r
错误1:private field ‘xxx‘ is never assigned 按Altʾnter快捷键,选择第2项 参考:https://blog.csdn.net/shi_hong_fei_hei/article/details/88814070 错误2:启动时报错,不能找到主启动类 #
报错如下,通过源不能下载,最后警告pip需升级版本 Requirement already satisfied: pip in c:\users\ychen\appdata\local\programs\python\python310\lib\site-packages (22.0.4) Coll
错误1:maven打包报错 错误还原:使用maven打包项目时报错如下 [ERROR] Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources (default-resources)
错误1:服务调用时报错 服务消费者模块assess通过openFeign调用服务提供者模块hires 如下为服务提供者模块hires的控制层接口 @RestController @RequestMapping(&quot;/hires&quot;) public class FeignControl
错误1:运行项目后报如下错误 解决方案 报错2:Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (default-compile) on project sb 解决方案:在pom.
参考 错误原因 过滤器或拦截器在生效时,redisTemplate还没有注入 解决方案:在注入容器时就生效 @Component //项目运行时就注入Spring容器 public class RedisBean { @Resource private RedisTemplate&lt;String
使用vite构建项目报错 C:\Users\ychen\work&gt;npm init @vitejs/app @vitejs/create-app is deprecated, use npm init vite instead C:\Users\ychen\AppData\Local\npm-