Results 1 to 4 of 4
Thread: How Do I: Convert to Java
- 11-28-2011, 03:49 PM #1
How Do I: Convert to Java
Hi buddy, do you know how to convert this C++ code into Java? I'm still fairly new to Java, hope you can guide meMicrosoft Visual C++ 2010
#include "stdafx.h"
#include<iostream>
using namespace std;
template<typename T>
class myShape{
protected:
T height, width;
};
template<typename T>
class CSquare : public myShape<T>
{
public:
CSquare(int height, int width){
this->height = height;
this->width = width;
}
T area(){
return this->height * this->width;
}
};
int _tmain(int argc, _TCHAR* argv[])
{
CSquare<int> *s = new CSquare<int>(3,4);
cout<<s->area();
}
...by the way, if you familiar with C++, please help me here to fix the Turbo C++ 4.5 code. Thanks friends
- 11-28-2011, 05:31 PM #2
- Join Date
- Sep 2008
- Location
- Voorschoten, the Netherlands
- Posts
- 11,605
- Blog Entries
- 7
- Rep Power
- 17
Re: How Do I: Convert to Java
Java has generics; they (sort of) do what C++s templates do; read a tutorial on the subject, for simple use they aren't very different.
kind regards,
Jos
ps. I deleted your other identical thread and made this one visible to all.When people rob a bank they get a penalty; when banks rob people they get a bonus.
- 11-28-2011, 06:36 PM #3
Re: How Do I: Convert to Java
Did you not like the help you already received elsewhere?
Crossposted: How Do I: Convert to JavaHow to Ask Questions the Smart Way
Static Void Games - Play indie games, learn from game tutorials and source code, upload your own games!
- 11-29-2011, 02:50 AM #4
Similar Threads
-
How can I convert java files to exe?
By manolis_kakou in forum Advanced JavaReplies: 6Last Post: 07-21-2010, 02:56 PM -
Convert C++ code to Java
By napoleon in forum New To JavaReplies: 2Last Post: 03-07-2010, 07:44 AM -
how to convert * into : using java
By Ricks in forum New To JavaReplies: 2Last Post: 02-02-2010, 04:57 PM -
Convert .java to .exe
By susan in forum New To JavaReplies: 6Last Post: 02-11-2009, 06:47 AM -
Convert java to .exe
By heartysnowy in forum New To JavaReplies: 13Last Post: 11-21-2008, 08:16 AM


2Likes
LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks