| Author |
Message |
akashkhatri BizHat Newbie

Joined: 09 Nov 2006 Posts: 7
|
|
| Back to top |
|
 |
yaniv4 BizHat Newbie

Joined: 27 Dec 2006 Posts: 6
|
Posted: Wed Dec 27, 2006 8:31 pm Post subject: :) |
|
|
| thank's man. nice link... |
|
| Back to top |
|
 |
niram BizHat Newbie

Joined: 23 Jan 2007 Posts: 5
|
Posted: Tue Jan 23, 2007 2:00 pm Post subject: |
|
|
| Is it support java servelets |
|
| Back to top |
|
 |
niram BizHat Newbie

Joined: 23 Jan 2007 Posts: 5
|
Posted: Tue Jan 23, 2007 2:00 pm Post subject: |
|
|
| How Can add new aspx page with this free site help me plz |
|
| Back to top |
|
 |
niram BizHat Newbie

Joined: 23 Jan 2007 Posts: 5
|
Posted: Tue Jan 23, 2007 2:02 pm Post subject: |
|
|
| I want to add a powerpoint slide to my site Is it possible |
|
| Back to top |
|
 |
niram BizHat Newbie

Joined: 23 Jan 2007 Posts: 5
|
Posted: Tue Jan 23, 2007 2:03 pm Post subject: |
|
|
| Is it Possible to change this free site to a real domain name after 6 monts |
|
| Back to top |
|
 |
niram BizHat Newbie

Joined: 23 Jan 2007 Posts: 5
|
Posted: Tue Jan 23, 2007 2:03 pm Post subject: |
|
|
| How Can I increase my web space Help me |
|
| Back to top |
|
 |
umair1986 BizHat Newbie

Joined: 04 Feb 2007 Posts: 2
|
Posted: Sun Feb 04, 2007 8:55 pm Post subject: Java is Object Based or Object oriented |
|
|
Is java object oriented or object based.
Some peoples say that it is object based and orject oriented as well .
what is your opinion in this context
since java supports both concepts such built in api supports the object based.
and classification in java supports the object orientation. |
|
| Back to top |
|
 |
restmen BizHat Newbie

Joined: 19 Feb 2007 Posts: 7
|
Posted: Mon Feb 19, 2007 1:06 am Post subject: |
|
|
| JAVA IS THE BEST THING FOR INTERNET |
|
| Back to top |
|
 |
alokmishra_delight BizHat Newbie

Joined: 27 Feb 2007 Posts: 1
|
Posted: Tue Feb 27, 2007 6:22 am Post subject: |
|
|
Dear umair1986
Java is an object oriented programming language.
This object orientation is an approach used by java.
In the time before the programming languages like C used (still uses) the Structure oriented approach.
The difference between these two approaches is logical .
.....
continued in the next post |
|
| Back to top |
|
 |
alokmishra BizHat Newbie

Joined: 27 Feb 2007 Posts: 6
|
Posted: Tue Feb 27, 2007 6:35 am Post subject: |
|
|
...continued from the last post
First I'd like to tell you about the structured oriented approach.
In this approach we first think what we want to do and how we have to do.
Next we make the appropriate methods to do whatever we need to do. The methods are the functions like getnewdata() etc.
Now we think what data we require to accomplish this function.
..... |
|
| Back to top |
|
 |
alokmishra BizHat Newbie

Joined: 27 Feb 2007 Posts: 6
|
Posted: Tue Feb 27, 2007 7:31 am Post subject: |
|
|
this approach was satisfactory in the old days but soon it became unsatisfactory to resolve new issues like security of data in the programming .
e.g. when a function is called in the C the calling function has complete access to all data variables of the called function and can modify it on its demand .
When working with large functions like having thousands of lines of code it becomes difficult as to which function calls and modify which variales |
|
| Back to top |
|
 |
alokmishra BizHat Newbie

Joined: 27 Feb 2007 Posts: 6
|
Posted: Tue Feb 27, 2007 7:39 am Post subject: |
|
|
......
It leads to complexity and error prone development.
While we come to the object oriented approach (OOP) it is a quite different approach as opposed to the Structure oriented programming here we assumes the data first and then the functions required to manipulate the data.
.... |
|
| Back to top |
|
 |
alokmishra BizHat Newbie

Joined: 27 Feb 2007 Posts: 6
|
Posted: Tue Feb 27, 2007 7:43 am Post subject: |
|
|
...
for example when be go to the object oriented approach we make a module or a class and here we define data and then the functions to manipulate the data.
this class can be accessed by the other functions and the data in this class can be made as private .
It means any other function of other class can not access the data of this class for modification etc. |
|
| Back to top |
|
 |
alokmishra BizHat Newbie

Joined: 27 Feb 2007 Posts: 6
|
Posted: Tue Feb 27, 2007 7:54 am Post subject: |
|
|
.....
there are four kinds of visibility controls in the java which is a OOP language:
1. Public
2.Protected
3. Freindly
4. Private
The Pulic type control makes other classess to access the data of a particular class and make other classes to modify the data
The Protected type control makes only non-sub classes in other
packages can not access the protected data.
.......... |
|
| Back to top |
|
 |
|