在 C++ 中的类中定义一个结构

Define a struct inside a class in C++(在 C++ 中的类中定义一个结构)

本文介绍了在 C++ 中的类中定义一个结构的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

谁能给我举个例子,说明如何在 C++ 中的 中定义新类型的 struct.

Can someone give me an example about how to define a new type of struct in a class in C++.

谢谢.

推荐答案

是这样的:

class Class {
    // visibility will default to private unless you specify it
    struct Struct {
        //specify members here;
    };
};

这篇关于在 C++ 中的类中定义一个结构的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:在 C++ 中的类中定义一个结构

基础教程推荐