why do we typecast ActionForm into out plain java bean
class in Action class?

Answers were Sorted based on User's Feedback



why do we typecast ActionForm into out plain java bean class in Action class?..

Answer / jagadeesh b.n

Bcoz as u all know, casting are of 2 types Upcast(implicit)
and Downcast(Explicit)in core java.....Upcasting means
converting lower datatype(int) to higher datatype(long) and
Downcast means its a viceversa of upcast...(long to int)...

As u know in struts ActionForm is a superclass where as ur
Java bean program is a simple class with private fields and
set/get methods for conversion of superclass to sublclass
we use typecasting in struts...

Is This Answer Correct ?    5 Yes 1 No

why do we typecast ActionForm into out plain java bean class in Action class?..

Answer / ravikiran(aptech mumbai)

Because The methods what we declared in a bean are not of
type ActionForm class type that's why we are type casting
and calling our getters and setters

Is This Answer Correct ?    3 Yes 2 No

why do we typecast ActionForm into out plain java bean class in Action class?..

Answer / santhoshkumar.shaik

ok here our our form data in ActionForm
that's y u shoud do down Type Cast
othere wise u can n't use

Is This Answer Correct ?    0 Yes 2 No

why do we typecast ActionForm into out plain java bean class in Action class?..

Answer / balaji

Bcoz this will tell that our form bean is an action form
bean which will refer to which action it is referred from
strutsconfig.xml file


10x
balaji

Is This Answer Correct ?    1 Yes 4 No

why do we typecast ActionForm into out plain java bean class in Action class?..

Answer / johndoe

Acctually not realy thinking you should ask that, i mean
well ask, the answer is: to use it's methods.

But to understand it i recomend reading something about
polymorphy which explains why we're casting the action-
form, hope i understood right.

Regards
Jan

Is This Answer Correct ?    2 Yes 7 No

Post New Answer

More Struts Interview Questions

where you store password in banking project

1 Answers  


How can we integrate log4j in Struts2 application?

1 Answers  


How many struts config file can be created in struts?

1 Answers  


Explain design patterns which is used in struts?

1 Answers  


Explain the complete struts validator framework.

1 Answers  


what happen if the private constructor is written in a claass

6 Answers  


Can you explain struts.properties in struts2?

1 Answers  


What is apache struts used for?

1 Answers  


Can we write Structs application without using Action Class directly or indirectly(extends Action class)

5 Answers  


What is difference between spring and struts?

1 Answers  


What are the core classes of struts framework? Explain

1 Answers  


In which method of action class the business logic is executed?

1 Answers  


Categories