I R A BroGrammer.
It took me a while to do this. I mean, finally make my mid up on just HOW I wanted to do this. Given the state of social media and how widely excepted blogging has become, I decided this would be the perfect way chart my journey into the abysmal world of programming.What Language Should You Start With?
Contrary to popular belief , programming is actually quite simple. With the advent of object based programming it couldn't be easier. For this reason, if your new to programming, I recommend you start with a language that is strongly suited in the object base programming area such as java or C#.Exhibit A, typical class in Java(Not main).
public class MyClass {
int num = 0;
double frac= 0.0;
String word= "Me"
public MyClass()
{
}
}
Exhibit B, typical class in Java(Not main).
namespace MyApp
{
public class MyClass
{
int num = 0;
double frac= 0.0;
string word= "Me";
public MyClass()
{
}
}
Exhibit C( Ironically ), typical class in C++ (Not main and Console).
MyClass::MyClass()
{
this->std::string word = word;
}
.... Plus the header
public:
string word;
You chose how and how MUCH you want to code. personally, I recommend you start with java. C is just as easy , however, you mostly likely will end up having to use visual c# and that's somewhat round about. By programming java in eclipse, the syntax you learn is about 80% identical to most other object based languages so when your deep enough, switching to other popular languages is pretty simple, all things considered that is.
No comments:
Post a Comment