它是一个结构体还是一个内表?

发布于 2024-11-19 10:34:25 字数 154 浏览 5 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

白衬杉格子梦 2024-11-26 10:34:25

它将是一个内部表。其线路将属于 PPP 类型。

it will be an internal table. its lines will be of the type PPP.

执着的年纪 2024-11-26 10:34:25
DATA: xxx TYPE STANDARD TABLE OF PPP, "produces table with lines of type ppp
      yyy type PPP.                    "produces flat structure of type ppp. 

yyy 是 PPP 类型的结构,可以附加到 xxx,因为它们属于同一类型。

DATA: xxx TYPE STANDARD TABLE OF PPP, "produces table with lines of type ppp
      yyy type PPP.                    "produces flat structure of type ppp. 

yyy is a structure of type PPP and can be appended to xxx since they are of the same type.

流年已逝 2024-11-26 10:34:25
类型:PPP 开头
    ------
   PPP 结束,

xxx 类型 PPP 标准表

xxx 既不是结构体也不是内部表,而是表类型。

如果您声明:

DATA: lt_xxx TYPE xxx.

那么您将拥有一个标准内部表,其结构基于 PPP 结构定义(因为 xxx 是基于 PPP 的表 tabe)。

TYPES: BEGIN OF PPP
    ------
   END OF PPP,

xxx TYPE STANDARD TABLE OF PPP

xxx won't be either a structure or an internal table, but a table type.

If you declare:

DATA: lt_xxx TYPE xxx.

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).

故事↓在人 2024-11-26 10:34:25

这里 XXX 将是内部表 - 保存 PPP 的结构

Here XXX will be the internal table - that hold the structure of PPP

Saygoodbye 2024-11-26 10:34:25

保罗是对的;

xxx 既不是一个结构体,也不是一个内表,而是一个表
类型。

或者您可以使用以下语句创建结构或内部表:

DATA: ls_xxx  TYPE ppp. " <<-- Structure
DATA: lt_xxx  TYPE STANDARD TABLE OF ppp. " <<-- Internal Table
DATA: lt_xxx2 TYPE xxx. " <<-- Internal Table

Paulo is right;

xxx won't be either a structure or an internal table, but a table
type.

Or you can create Structure or Internal Table with statement below:

DATA: ls_xxx  TYPE ppp. " <<-- Structure
DATA: lt_xxx  TYPE STANDARD TABLE OF ppp. " <<-- Internal Table
DATA: lt_xxx2 TYPE xxx. " <<-- Internal Table
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文