它是一个结构体还是一个内表?
TYPES: BEGIN OF PPP
------
END OF PPP,
xxx TYPE STANDARD TABLE OF PPP
我的问题是 xxx
是内部表还是结构?
TYPES: BEGIN OF PPP
------
END OF PPP,
xxx TYPE STANDARD TABLE OF PPP
My question is will xxx
be an internal table or a structure?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
它将是一个内部表。其线路将属于 PPP 类型。
it will be an internal table. its lines will be of the type PPP.
yyy 是 PPP 类型的结构,可以附加到 xxx,因为它们属于同一类型。
yyy is a structure of type PPP and can be appended to xxx since they are of the same type.
xxx 既不是结构体也不是内部表,而是表类型。
如果您声明:
那么您将拥有一个标准内部表,其结构基于 PPP 结构定义(因为 xxx 是基于 PPP 的表 tabe)。
xxx won't be either a structure or an internal table, but a table type.
If you declare:
Then you would have a standard internal table with its structure based on PPP structure definition (since xxx is a table tabe based on PPP).
这里 XXX 将是内部表 - 保存 PPP 的结构
Here XXX will be the internal table - that hold the structure of PPP
保罗是对的;
或者您可以使用以下语句创建结构或内部表:
Paulo is right;
Or you can create Structure or Internal Table with statement below: