-2

重複の可能性:
C の前方参照とは?

この質問をどこかで読みました

"What is forward reference with respect to pointers in C, and what are its advantages"

ここで言及されている受け入れられた回答: What is forward reference in C? ちゃんと説明しないの?誰がそれが何を意味するのか正確に説明できますか? そしてそれは何か利点がありますか?

4

1 に答える 1

2

ポインターに関する前方参照は、私たちが使用する用語です。

ポインターが宣言され、コンパイラーはポインター用にメモリーを予約しますが、ポインターが指す DataItem は定義されていません。

以前の回答から::

struct MyStruct *ptr; // this is a forward reference cuz pointer ptr is declared
                      // but the structure it points to is itself not defined till now.

struct MyStruct // Now the structure is declared
{
       // some data members
};

利点::利点

于 2013-02-02T07:26:40.240 に答える