如何在另一个类中访问struct?

时间:2017-10-29 10:47:31

标签: c++

如何在B类中访问randomStruct?

Class A
{
 public:
  struct randomStruct
   {
    // some functions and variables here
   }
}

Class B
{
// and here I need to call my randomStruct from class A
}

这只是代码

的一个例子

1 个答案:

答案 0 :(得分:0)

如果您通过电话使用这可能是一个解决方案

val df2 = spark.read.json("/xxx/xxx/xxx/nested2.json")
df2.printSchema

root
 |-- id: string (nullable = true)
 |-- image: string (nullable = true)
 |-- name: string (nullable = true)
 |-- type: string (nullable = true)