ABAP使用方法作为参数



我想直接使用方法的返回值。例如,在c++中,可以使用:

//Some codes
cout << obj1.get_foo() << endl;
int a = obj2->get_value() + 100 + obj2->get_value();

//...
obj1->set_color("BLUE");
cout << "Color is:" << obj1->get_color();
printf("Color is: %s", obj1->get_color()); // C Version

当我在ABAP中这样做时:

OBJ1->SET_COLOR( 'BLUE' ). "That's OK.
WRITE:/ 'Color is:', OBJ1->GET_COLOR( ). "Error!

我期望这个输出:

Color is: BLUE

编辑:我在标题中使用的参数字不是ABAP关键字,而是作为函数参数。

你能做的是。

* before 740
OBJ1->SET_COLOR( 'BLUE' ).
DATA COLOR TYPE NAME.
COLOR = OBJ1->GET_COLOR( ).
WRITE:/ 'Color is:', COLOR.

* since 740
OBJ1->SET_COLOR( 'BLUE' ).
DATA(COLOR) = OBJ1->GET_COLOR( ).
WRITE:/ 'Color is:', COLOR.

最诚挚的问候,Tapio

另一个解决方案:

DATA : STRING TYPE STRING.

CONCATENATE 'Color is:' OBJ1->GET_COLOR( ) INTO STRING SEPARATED BY ' '.
WRITE :/ STRING .

如果你有一个多语言的应用程序,使用这个方法,你可以得到正确的语言'Color is:'在同一时间。

相关内容

  • 没有找到相关文章

最新更新