package com_example

class StringList

#define com_example_StringList_IMPORT
#include <com/example/StringList.h>
自己参照する構造体の例として文字列のリストを表すデータ型を提供します。

操作は省略されています。


Struct Summary

StringList (struct StringList)
          文字列のリストとなる構造体です。
 struct StringList * next
          リストの次の構造体を指します。
 char * value
          保持している文字列です。

Struct Detail

StringList (struct StringList)

文字列のリストとなる構造体です。

構造体のリンクでリストを実現します。


next

struct StringList * next

リストの次の構造体を指します。

リストの最後の構造体の場合、NULLになります。


value

char * value

保持している文字列です。