通過例子學習ABAP(三) 初始化內錶

2022-02-15 15:50:24 字數 733 閱讀 4517

初始化內錶的作用是清空內錶所有的資料行,將內錶恢復到填充或賦值之前的狀態。初始化內錶過程中需要注意之處仍然是初始化無 表頭行內表和有表頭行內表的區別,以及初始化內錶和表頭行的區別。

(1)clear    itab.       同時清空表頭和行內表的值

(2)clear    itab.       只清空內錶本身的值,保留表頭行的值。

(3)refresh    tab     只清空內錶本身的值,保留表頭行的值。

(4)free    itab.            只清空內錶本身的值,保留表頭行的值。

data: begin

ofline,

col1(1) type

c,col2(1) type

c,end

ofline.

data itab like

table

ofline

with

header

line

to itab.

loop

at itab.

write : itab-col1.

endloop.

clear itab.  "在這裡可以嘗試clear itab,free itab,refresh itab,看看效果是不是如上所說這樣。

if itab is

initial.

write

'itab is empty'.

endif.

vue 初始化請求例子 Vue例項初始化

vue的建構函式new vue 一切都是從vue的建構函式開始的.當執行了npm run dev的構建過程就是執行這些初始化的過程,首先在node modules中找到vue原始碼,core檔案是對vue核心的包裝,入口檔案index.js,先從乙個建構函式開始,然後在vue的prototype上進...

Idea內初始化git

利用模板建立完最原始的web專案後就可以在idea內初始化git了,並使用idea的控制台控制git git init 初始化git git status 檢視狀態 git branch 檢視分支 git add 增加所有檔案 git status git commit am first commi...

經典類初始化例子

package classes class cache private static int sum public static int getsum private static synchronized void initializeifnecessary public class client...