Click here to Skip to main content
15,889,651 members
Home / Discussions / Java
   

Java

 
QuestionRe: 404 error in eclipse tomcat server in java. Pin
Richard MacCutchan10-Nov-15 23:07
mveRichard MacCutchan10-Nov-15 23:07 
QuestionHow can I rename an existing Spring MVC maven project Pin
Stephen Holdorf10-Nov-15 12:44
Stephen Holdorf10-Nov-15 12:44 
AnswerRe: How can I rename an existing Spring MVC maven project Pin
Stephen Holdorf10-Nov-15 12:55
Stephen Holdorf10-Nov-15 12:55 
QuestionHow do I add multiple Spring MVC controllers to my maven project Pin
Stephen Holdorf9-Nov-15 13:29
Stephen Holdorf9-Nov-15 13:29 
QuestionSince i m a student can I get industrial level examples on java where inheritance is major part? Pin
SSHASHIDHAR5-Nov-15 1:10
SSHASHIDHAR5-Nov-15 1:10 
AnswerRe: Since i m a student can I get industrial level examples on java where inheritance is major part? Pin
OriginalGriff5-Nov-15 1:13
mveOriginalGriff5-Nov-15 1:13 
GeneralRe: Since i m a student can I get industrial level examples on java where inheritance is major part? Pin
SSHASHIDHAR5-Nov-15 1:22
SSHASHIDHAR5-Nov-15 1:22 
QuestionRe: Since i m a student can I get industrial level examples on java where inheritance is major part? Pin
SSHASHIDHAR5-Nov-15 1:45
SSHASHIDHAR5-Nov-15 1:45 
//hierarchial inheritance
class Polygon
{
double height;
double width;

public void set_values(double a,double b)
{
height=a;
width=b;
}
}
class Rectangle extends Polygon
{
double area()
{
return height*width;
}
}
class Triangle extends Polygon
{
double area()
{
return (height*width)/2;
}
}
class AreaClass
{
public static void main(String[] args)
{
Rectangle obj1=new Rectangle();
Triangle obj2=new Triangle();
obj1.set_values(10,10);
obj2.set_values(10,10);
//obj1.Rectangle();
//obj1.Triangle();
System.out.println("Area of rectangle is "+obj1.area());
System.out.println("Area of Triangle is "+obj2.area());
}
}

// so sir i know the concept but i m not able to get how exactly this will be applied in industry so please provide some example then i will think and try to solve that kind of problems
AnswerRe: Since i m a student can I get industrial level examples on java where inheritance is major part? Pin
Richard MacCutchan5-Nov-15 5:39
mveRichard MacCutchan5-Nov-15 5:39 
GeneralRe: Since i m a student can I get industrial level examples on java where inheritance is major part? Pin
SSHASHIDHAR5-Nov-15 9:29
SSHASHIDHAR5-Nov-15 9:29 
GeneralRe: Since i m a student can I get industrial level examples on java where inheritance is major part? Pin
Richard MacCutchan5-Nov-15 23:12
mveRichard MacCutchan5-Nov-15 23:12 
QuestionNewly added jap page requested resource is not available Pin
Stephen Holdorf3-Nov-15 7:38
Stephen Holdorf3-Nov-15 7:38 
AnswerRe: Newly added jap page requested resource is not available Pin
Stephen Holdorf3-Nov-15 7:58
Stephen Holdorf3-Nov-15 7:58 
QuestionCode Design alternative for a Turn based game Pin
sitnik3-Nov-15 0:16
sitnik3-Nov-15 0:16 
QuestionHow do I Manually adding Spring MVC import libraries in to a Controller file Pin
Stephen Holdorf30-Oct-15 10:24
Stephen Holdorf30-Oct-15 10:24 
AnswerRe: How do I Manually adding Spring MVC import libraries in to a Controller file Pin
Richard MacCutchan30-Oct-15 22:57
mveRichard MacCutchan30-Oct-15 22:57 
QuestionMessage Removed Pin
29-Oct-15 13:53
Stephen Holdorf29-Oct-15 13:53 
NewsA new java open source framework: BabyFish Pin
babyfish-ct29-Oct-15 7:32
babyfish-ct29-Oct-15 7:32 
Questionjsp Pin
mohanbc1827-Oct-15 23:29
mohanbc1827-Oct-15 23:29 
GeneralRe: jsp Pin
Richard MacCutchan27-Oct-15 23:36
mveRichard MacCutchan27-Oct-15 23:36 
AnswerRe: jsp Pin
mohanbc1827-Oct-15 23:42
mohanbc1827-Oct-15 23:42 
GeneralRe: jsp Pin
Richard MacCutchan28-Oct-15 0:31
mveRichard MacCutchan28-Oct-15 0:31 
GeneralJava or JavaScript AKA where to start Pin
Vaclav_27-Oct-15 5:03
Vaclav_27-Oct-15 5:03 
GeneralRe: Java or JavaScript AKA where to start Pin
Richard MacCutchan27-Oct-15 5:26
mveRichard MacCutchan27-Oct-15 5:26 
GeneralRe: Java or JavaScript AKA where to start Pin
Vaclav_27-Oct-15 16:11
Vaclav_27-Oct-15 16:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.