游.程 2008-10-14 13:13 采纳率: 0%
浏览 345
已采纳

如何将数组的所有成员初始化为相同的值?

I have a large array in C (not C++ if that makes a difference). I want to initialize all members to the same value. I could swear I once knew a simple way to do this. I could use memset() in my case, but isn't there a way to do this that is built right into the C syntax?

转载于:https://stackoverflow.com/questions/201101/how-to-initialize-all-members-of-an-array-to-the-same-value

  • 写回答

19条回答 默认 最新

  • bug^君 2008-10-14 13:17
    关注

    Unless that value is 0 (in which case you can omit some part of the initializer and the corresponding elements will be initialized to 0), there's no easy way.

    Don't overlook the obvious solution, though:

    int myArray[10] = { 5, 5, 5, 5, 5, 5, 5, 5, 5, 5 };
    

    Elements with missing values will be initialized to 0:

    int myArray[10] = { 1, 2 }; // initialize to 1,2,0,0,0...
    

    So this will initialize all elements to 0:

    int myArray[10] = { 0 }; // all elements 0
    

    In C++, an empty initialization list will also initialize every element to 0. This is not allowed with C:

    int myArray[10] = {}; // all elements 0 in C++
    

    Remember that objects with static storage duration will initialize to 0 if no initializer is specified:

    static int myArray[10]; // all elements 0
    

    And that "0" doesn't necessarily mean "all-bits-zero", so using the above is better and more portable than memset(). (Floating point values will be initialized to +0, pointers to null value, etc.)

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(18条)

报告相同问题?

悬赏问题

  • ¥15 计组这些题应该咋做呀
  • ¥60 更换迈创SOL6M4AE卡的时候,驱动要重新装才能使用,怎么解决?
  • ¥15 让node服务器有自动加载文件的功能
  • ¥15 jmeter脚本回放有的是对的有的是错的
  • ¥15 r语言蛋白组学相关问题
  • ¥15 Python时间序列如何拟合疏系数模型
  • ¥15 求学软件的前人们指明方向🥺
  • ¥50 如何增强飞上天的树莓派的热点信号强度,以使得笔记本可以在地面实现远程桌面连接
  • ¥20 双层网络上信息-疾病传播
  • ¥50 paddlepaddle pinn