📄 extarraysize.html
字号:
<!DOCTYPE HTML PUBLIC "-//W3O//DTD W3 HTML 2.0//EN"><!-- This collection of hypertext pages is Copyright 1995-2005 by Steve Summit. --><!-- Content from the book "C Programming FAQs: Frequently Asked Questions" --><!-- (Addison-Wesley, 1995, ISBN 0-201-84519-9) is made available here by --><!-- permission of the author and the publisher as a service to the community. --><!-- It is intended to complement the use of the published text --><!-- and is protected by international copyright laws. --><!-- The on-line content may be accessed freely for personal use --><!-- but may not be published or retransmitted without explicit permission. --><!-- --><!-- this page built Sat Dec 24 21:47:45 2005 by faqproc version 2.7 --><!-- from source file decl.sgml dated Wed Dec 21 12:56:18 2005 --><!-- corresponding to FAQ list version 4.0 --><html><!-- Mirrored from c-faq.com/decl/extarraysize.html by HTTrack Website Copier/3.x [XR&CO'2008], Sat, 14 Mar 2009 07:58:45 GMT --><head><meta name=GENERATOR content="faqproc"><title>Question 1.24</title><link href="dynarray.html" rev=precedes><link href="implfdecl.html" rel=precedes><link href="index.html" rev=subdocument></head><body bgcolor="#ffffff"><a href="dynarray.html" rev=precedes><img src="../images/buttonleft.gif" alt="prev"></a><a href="index.html" rev=subdocument><img src="../images/buttonup.gif" alt="up"></a><a href="implfdecl.html" rel=precedes><img src="../images/buttonright.gif" alt="next"></a> <a href="../index-2.html"><img src="../images/buttontop.gif" alt="top/contents"></a><a href="../search.html"><img src="../images/buttonsrch.gif" alt="search"></a><hr><p><!-- qbegin --><h1>comp.lang.c FAQ list<font color=blue>·</font><!-- qtag -->Question 1.24</h1><p><font face=Helvetica size=8 color=blue><b>Q:</b></font>I have an <TT>extern</TT> arraywhich is definedinone file,and used in another:<pre><I>file1.c:</I> <I>file2.c:</I>int array[] = {1, 2, 3}; extern int array[];</pre>Why doesn't <TT>sizeof</TT> work on<TT>array</TT> in <TT>file2.c</TT>?</p><p><hr><p><font face=Helvetica size=8 color=blue><b>A:</b></font>An <TT>extern</TT> array of unspecified sizeis an incomplete type; you cannot apply <TT>sizeof</TT> to it.<TT>sizeof</TT> operates at compile time,andthere is no way for it to learn the size of anarraywhich is defined in another file.</p><p>You have three options:<OL><li>Declare a companion variable,containing the size of the array,defined and initialized (with <TT>sizeof</TT>)in the same source file where the array is defined:<pre><I>file1.c:</I> <I>file2.c:</I>int array[] = {1, 2, 3}; extern int array[];int arraysz = sizeof(array); extern int arraysz;</pre>(See also question <a href="../aryptr/arraynels.html">6.23</a>.)<li><TT>#define</TT> a manifest constantfor the sizesothatit can be used consistently in the definitionand the <TT>extern</TT> declaration:<pre><I>file1.h:</I>#define ARRAYSZ 3extern int array[ARRAYSZ];<I>file1.c:</I> <I>file2.c:</I>#include "file1.h" #include "file1.h"int array[ARRAYSZ];</pre><li>Usesome sentinel value(typically <TT>0</TT>, <TT>-1</TT>, or <TT>NULL</TT>)inthe array's last element,sothat code can determine the endwithout an explicit size indication:<pre><I>file1.c:</I> <I>file2.c:</I>int array[] = {1, 2, 3, -1}; extern int array[];</pre></OL>(Obviously,the choice will depend to some extenton whether the array was already being initialized;if it was,option 2 is poor.)</p><p>See also question<a href="../aryptr/aryparmsize.html">6.21</a>.</p><p>References:H&S Sec. 7.5.2 p. 195<br></p><!-- aend --><p><hr><a href="dynarray.html" rev=precedes><img src="../images/buttonleft.gif" alt="prev"></a><a href="index.html" rev=subdocument><img src="../images/buttonup.gif" alt="up"></a><a href="implfdecl.html" rel=precedes><img src="../images/buttonright.gif" alt="next"></a> <a href="../questions.html"><img src="../images/buttontop.gif" alt="contents"></a><a href="../search.html"><img src="../images/buttonsrch.gif" alt="search"></a><br><!-- lastfooter --><a href="../about.html">about this FAQ list</a> <a href="../eskimo.html">about eskimo</a> <a href="../search.html">search</a> <a href="../feedback.html">feedback</a> <a href="copyright.html">copyright</a><p>Hosted by<a href="http://www.eskimo.com/"><img src="../../www.eskimo.com/img/link/eskitiny.gif" alt="Eskimo North"></a></body><!-- Mirrored from c-faq.com/decl/extarraysize.html by HTTrack Website Copier/3.x [XR&CO'2008], Sat, 14 Mar 2009 07:58:45 GMT --></html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -