Hi,
where the definition of for,do while is defined in java library.
i mean what is the internal definition of for and do--while.
Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
Hi,
where the definition of for,do while is defined in java library.
i mean what is the internal definition of for and do--while.
JLS chapter 14.
Chapter*14.*Blocks and Statements
Hi
Thanks for your reply.......
Actually i am unable to understand the actual meaning of that chapter.
the things is that i want to know the where for and do while are defined.
As we are getting the definitions of iterator and collection in java.util. in the same way where these construct are defined.
if i want to create such construct. how could we create it.
Those are reserved words, an internal construct of the Java language. There is no implementation itself. You use it or you don't.
What are you actually trying to do?
Thanks
actully i want to know ,how we can make my own construct like this.
No way. You'd have to rewrite the VM and compiler. There is no need to do such a thing.
A lot of Thanks............
one more query i want to create soap besd web-service from database. i am using myeclipse editor.
i have a requirment where i have to expose a table as webservice. could you guide me by giving code or steps
how can write this code.
Actually i have done googling but not successed.
No, sorry. Have a look for the best section to post your question and start a new thread. Nobody will find your question in this thread.
If you're interested in making your own control structures, consider trying Scala. They look very natural there. It's build upon JVM and it's a functional language. Though it's more difficult then Java.