class List
{
public:
    int init( int );
private:
    class ListItem;
};

class List::ListItem
{
public:    static int value;
    void  mf( const  List  &r);
    int  memb;
};

 

int List::ListItem::value;
void List::ListItem::mf(const List &r)
{   
}
int main()
{
    return 0;
}

相关文章: