Originally posted by analoveu
Java classes comments
Collapse
X
-
Well fine to see this new discussions on java classes.Really awaiting when it will come upto collection frameworks,stru ts etc.Or did you already covered the topics?
Originally posted by r035198xInheritance class is finally up. Just keep the comments, questions, analysis and criticisms coming here in this thread.Comment
-
Not yet. Just those topics in those classes have been covered so far. Struts tutorial wasn't part of the plan but I might include it in the J2EE tutorials that I'm thinking of starting as well.Originally posted by hirak1984Well fine to see this new discussions on java classes.Really awaiting when it will come upto collection frameworks,stru ts etc.Or did you already covered the topics?Comment
-
That will be so nice of you,and verrrry helpful for people like me.Originally posted by r035198xNot yet. Just those topics in those classes have been covered so far. Struts tutorial wasn't part of the plan but I might include it in the J2EE tutorials that I'm thinking of starting as well.Comment
-
java classes are pureley object oriented...All help to better application development than aany other languagesComment
-
Not really. Just having a class in your program does not mean that your code is object oriented. That is why Java is not purely object-oriented because you can write code that is not object oreinted with it.Originally posted by kirankrishnanjava classes are pureley object oriented...All help to better application development than aany other languagesComment
-
Java isn't purely an OO language because it has basic(primitive ) types that are not objects,.. a trade off of purity for practicality.Originally posted by kirankrishnanjava classes are pureley object oriented...All help to better application development than aany other languagesComment
-
True.Originally posted by abctechJava isn't purely an OO language because it has basic(primitive ) types that are not objects,.. a trade off of purity for practicality.
If you have a language in which evrything is an object, the language would become purely Object-Based not Object-Oriented.Comment
-
I am a bit confused between purely Object-Based and purely OO languages. Can you elaborate please?Originally posted by r035198xTrue.
If you have a language in which evrything is an object, the language would become purely Object-Based not Object-Oriented.
Is VB an Object Based language? Do we have any example of a purely OO language?Comment
-
A purely object oriented laguage would not only support object oriented design. It would have to have some level of enforcing object oriented design concepts. I don't know whether VB is object based or not but if everything is an object then the language is object based. Smalltalk is an example of a purely object-oriented language.Originally posted by abctechI am a bit confused between purely Object-Based and purely OO languages. Can you elaborate please?
Is VB an Object Based language? Do we have any example of a purely OO language?
Here is an article talking about these things.Comment
-
Thanks for the link r035198x. Here's another link I just came across related to this.Originally posted by r035198xA purely object oriented laguage would not only support object oriented design. It would have to have some level of enforcing object oriented design concepts. I don't know whether VB is object based or not but if everything is an object then the language is object based. Smalltalk is an example of a purely object-oriented language.
Here is an article talking about these things.Comment
-
hi i need help with somethingOriginally posted by r035198xPost comments and questions on the java classes in this thread.
i have
public class Name implements NameInterface
{
......
}
getting this error
C:\Program Files\Xinox Software\JCreat or\MyProjects\T est1\Name.java: 1: Name should be declared abstract; it does not define setName(java.la ng.String,java. lang.String) in Name
class Name implements Comparable, NameInterface
^
1 error
Process completed.Comment
-
Start a new thread for this. This thread is reserved for comments to Free Java Classes thread only.Originally posted by shy001hi i need help with something
i have
public class Name implements NameInterface
{
......
}
getting this error
C:\Program Files\Xinox Software\JCreat or\MyProjects\T est1\Name.java: 1: Name should be declared abstract; it does not define setName(java.la ng.String,java. lang.String) in Name
class Name implements Comparable, NameInterface
^
1 error
Process completed.Comment
Comment