Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

ABAP OBJECTS

Former Member
0 Likes
487

WHICH CLASSES CAN BE INSTANTIATED AMONG THE FOLLOWING

AN ABSTRACT CLASS

A FINAL CLASS

A CLASS WITH PRIVATE ATTRIBUTES

A CLASS WITH PUBLIC ATTRIBUTES

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
463

final class

class with private attributes and

a class with public attributes can be instantiated

3 REPLIES 3
Read only

Former Member
0 Likes
464

final class

class with private attributes and

a class with public attributes can be instantiated

Read only

Former Member
0 Likes
463

Abstract Class cannot be INSTANTIATED

Final Class cannot be INSTANTIATED

A CLASS WITH PRIVATE ATTRIBUTES CAN INSTantiate

A CLASS WITH PUBLIC ATTRIBUTES CAN INSTantiate

Please reward if useful.

Read only

0 Likes
463

Abstract Class cannot be INSTANTIATED

-> Final Class cannot be INSTANTIATED

A CLASS WITH PRIVATE ATTRIBUTES CAN INSTantiate

A CLASS WITH PUBLIC ATTRIBUTES CAN INSTantiate

A final class CAN be instantiated, the final means that it cannot be extended or be used as a superclass for another object.