• 0

Newbie C++ Help


Question

Recommended Posts

  • 0
Ok, I got inspired today to learn a programing language. I want to learn C++ but I am sitting here with no clue on earth on where to start. Can anyone give me links to newbie tutorials and sites? If you can, please state any tips that you have for me, thanks!

errr...Google..seriously VS 2008 Express is free and you can download to learn C++.

  • 0

Hey guys, i need some BIG help.

Its the last 2 weeks of my computing course at college and i am panicking over my program, the tutor isn't allowed to help me with the program all he can do is say whether its wrong or right and what i need to do next etc.

Anyways, i have the program half done at least, but now i am completely stumped, i was wondering if someone here could add me on msn and help me finish the program, i wouldn't bother asking but i suck at it and its not my strong side not to mention its a required credit to pass HNC computing!

  • 0
Hey guys, i need some BIG help.

Its the last 2 weeks of my computing course at college and i am panicking over my program, the tutor isn't allowed to help me with the program all he can do is say whether its wrong or right and what i need to do next etc.

Anyways, i have the program half done at least, but now i am completely stumped, i was wondering if someone here could add me on msn and help me finish the program, i wouldn't bother asking but i suck at it and its not my strong side not to mention its a required credit to pass HNC computing!

If you have a programming problem, post that. Stackoverflow.com is always a great place to ask for help. If you need somebody to actually FINISH your assignment then that's just your own laziness.

  • 0

Hi guys. I'm not in any computer-related programs in University/College but I've decided that I have too much free time, and I'd like to pick up programming as my hobby (don't really have a real one at the moment). I was thinking of starting with C++ to learn the basics of OO programming, and then moving onto C# or Objective-C... My end goal is to either join an indie game development team until I have enough experience to possibly lead my own way down the line or to write iPhone or Android applications... depending on how I feel after experiencing some programming. I'm not a total newb, I took some high school programming courses (in Java and Visual Basic, I also know HTML/CSS from personal experience) so I'm not going into this completely blind.

Any pointers for someone in my position? Tips? Advice that isn't "don't even bother trying?" Thanks in advanced! I have lots of motivation and a strong will so I think I should be able to do it.

  • 0

If you've done Java, you've already had an overdose of OO. I'd actually recommend starting with C. It will give you a much better understanding and appreciation of How Things Really Work, and once you've gotten that, the higher languages will make much more sense.

  • 0
Hi guys. I'm not in any computer-related programs in University/College but I've decided that I have too much free time, and I'd like to pick up programming as my hobby (don't really have a real one at the moment). I was thinking of starting with C++ to learn the basics of OO programming, and then moving onto C# or Objective-C... My end goal is to either join an indie game development team until I have enough experience to possibly lead my own way down the line or to write iPhone or Android applications... depending on how I feel after experiencing some programming. I'm not a total newb, I took some high school programming courses (in Java and Visual Basic, I also know HTML/CSS from personal experience) so I'm not going into this completely blind.

Any pointers for someone in my position? Tips? Advice that isn't "don't even bother trying?" Thanks in advanced! I have lots of motivation and a strong will so I think I should be able to do it.

I'll have to disagree with kliu0x52 and recommend a modern language such as C#. C doesn't teach you to think with objects and encourages practices considered sloppy such as extensive use of the preprocessor, global functions and variables, abuse of casts, using return codes for error-checking, memcpy(), and the list goes on. Skip C for now, you can always learn it later, it's very simple (and very stupid).

To learn the basics of OO you're much better off with a real, pure OO language like Java or C# than C++. C++ is hard to learn and you won't be productive with it before quite a while. However, it's definitely a big plus (a double plus :p) to know C++ if you want to work as a programmer, and going through it definitely teaches you a lot of things about how higher-level languages work under the hood. I personally started with C++, and I must say all the other languages were a breeze and a relief after that.

  • 0
C doesn't teach you to think with objects

It teaches the underpinnings of OO. He's already done OO in Java. C teaches you how OO is implemented. Back when I tutored people and had to explain to them things like static and virtual methods, I often found that the best explanations, the ones that elicited a "oh, I get it now, that makes so much more sense than how I was taught" was when I broke things down and explained how OO was implemented and how that affects why some things in OO are the way that they are.

It's the difference between telling someone that they can use a fire extinguisher to put out a fire and explaining to someone what goes on chemically when something burns and how, as a result, you can stop a fire by either depriving it of the reactants--the latter makes the former more understandable and also opens up a wider perspective (e.g., "so that means that I can also stop a fire by dumping sand on it since that too will choke out the oxygen, right?").

encourages practices considered sloppy such as extensive use of the preprocessor, global functions and variables, abuse of casts, using return codes for error-checking, memcpy(), and the list goes on.

You don't have to use the preprocessor that much, and C does not encourage the use of global variables. The so-called "abuse" of casting is just a way of revealing How Things Really Work. And I don't see how memcpy is abusive.

Skip C for now, you can always learn it later, it's very simple (and very stupid).

It's very simple. And insanely powerful. And absolutely essential for anyone who wants to be a real programmer (instead of just a hobbyist). And an understanding of C will make so many things in other languages make more sense.

I'll admit that I do harbor a very deep disdain for Java and C# (I've been known to call them toy languages when I'm cranky :)). "Modern" languages focus on making life easier for the programmer. And they focus on a "bigger picture" approach to development. It's all about big, grand architecture and it's great if you are working on some large project comprised of various interconnected components. And if that's what you're doing, then yea, go ahead and use an OO language--there is a time and place for them! But be aware that they really narrow your perspective; learning C# is like vocational training while learning C is really learning how to program. Someone (I forgot who) once wrote that Java and C# is a lot like a hardware store approach: you walk in and look on the shelf for some part to do the thing that you need; it takes away from a lot of the problem solving and ingenuity of real programming.

The other big problem is that abstractions are not perfect. One of the Google founders once joked that software gets twice as slow every 18 months and that's why we need Moore's Law. But why is that? When people are so far separated from What Really Goes On Underneath, they are liable to make dumb design decisions. For example, SOAP. Or anything XML, for that matter (obviously, whoever thought it'd be cute to use XML for everything has no friggin' idea of the costs associated with using XML as a format). If you knew that concatenating two strings involves creating a new string, copying the contents of string A, copying the contents of string B, and freeing string A and B, then you'd be more careful about using such operations unnecessarily. If you understood what kind of huge bookkeeping costs the heap manager has to go through to allocate the memory of string C and "free" the memory for string A and string B (heaps are very complicated and are very expensive clock-cycle-wise), then you'd be even more keen to avoid such operations (or use the stack or some custom allocation scheme if possible). If you understood what the system has to go through to carry out a floating point operation, then you'd use x+=x<<1 instead of x*=1.5 (okay, granted, knowing C won't expose the costs of floating point or heaps, which is why I also advocate learning a bit of assembly :)). The "modern" languages want you to ignore such inconvenient details. And as more people write code without knowledge of What Really Goes On, then we will get progressively less efficient code (I'm not saying that you should abandon C# for C, but rather that if you knew C, then that understanding of the guts of the system will make you a more efficient C# programmer).

  • 0

Hello. Thanks for the replies.

My former experience with programming happened over 6 years ago so I am quite rusty and do not remember, but I think I would be able to pick it up eventually. Thank you both for your advice, but I think starting with C may be a good idea after all - kliu0x52 makes a very convincing argument :)

I plan on starting as a hobby, but depending how much I enjoy doing it, it could move onto a full-time career for me. I've grown up around computers yet never dived into programming seriously. I think that time has come now. Any advice on where to start? Any good books or websites for someone in my position? I do not remember much about OO or procedural programming at all.... my most recent programming knowledge is HTML & CSS which probably won't help with where I am headed. Any direction would be appreciated!

  • 0
Hello. Thanks for the replies.

My former experience with programming happened over 6 years ago so I am quite rusty and do not remember, but I think I would be able to pick it up eventually. Thank you both for your advice, but I think starting with C may be a good idea after all - kliu0x52 makes a very convincing argument :)

I plan on starting as a hobby, but depending how much I enjoy doing it, it could move onto a full-time career for me. I've grown up around computers yet never dived into programming seriously. I think that time has come now. Any advice on where to start? Any good books or websites for someone in my position? I do not remember much about OO or procedural programming at all.... my most recent programming knowledge is HTML & CSS which probably won't help with where I am headed. Any direction would be appreciated!

I doubt you will score a fulltime career without a CS degree. In my university comp sci classes has a few 40-50 year old people trying to get their degree because they can't even find a job with 20+ years of programming experience.

But as a hobby, by all means pursue it. You can probably start off with some programing tutorial videos (good place to look is @ torrents) and pick it up pretty quickly with your prior experience.

As far as developing applications, I can't help you there (I'm more of a systems programming guy). But i can tell you that its best to use a sophisticated IDE (For example, you really wouldn't want to program a gui by hand, i tried it and progress has been veerryy slow for me [lost motivation])

SO where to really start? thats up to you. Google something like "developing applications for iphone" and see where that takes you. Hit a roadblock? google the obstacle and learn how to overcome it. Thats how i self-learn, maybe it will work for you.

  • 0
Thank you both for your advice, but I think starting with C may be a good idea after all - kliu0x52 makes a very convincing argument :)
I'll eventually take the time to respond to his argument properly, but I'm not that strongly opposed to learning C first. After all, I started with C++, which is a superset of C. So, C it is, then. It's one of the least productive languages on earth, but it does show you the basics. Just don't stick around with it for too long, you'll grow bored.
Any advice on where to start? Any good books or websites for someone in my position?
A good C tutorial :

http://www.cprogramming.com/tutorial.html#ctutorial

A good book : http://www.amazon.com/Primer-Plus-5th-Step...5/ref=pd_cp_b_1

A good development tool : http://www.microsoft.com/express/vc/

Tip : when you create a new project in Visual C++, make sure you select a general, empty project (I think the default is a Win32 application). Also, since you want to write C, not C++, go to your Project Properties and somewhere in the compiler options you'll be able to set "Compile as C" (it will be Compile as C++ by default).

Have fun. :)

Edited by Dr_Asik
  • 0
Hi guys. I'm not in any computer-related programs in University/College but I've decided that I have too much free time, and I'd like to pick up programming as my hobby (don't really have a real one at the moment). I was thinking of starting with C++ to learn the basics of OO programming, and then moving onto C# or Objective-C... My end goal is to either join an indie game development team until I have enough experience to possibly lead my own way down the line or to write iPhone or Android applications... depending on how I feel after experiencing some programming. I'm not a total newb, I took some high school programming courses (in Java and Visual Basic, I also know HTML/CSS from personal experience) so I'm not going into this completely blind.

There is no generic answer, what tool you should pick depends entirely on what it is you want to do, and not to discourage you, but it's a very long road.

Before you learn any programming language, you should be comfortable with the underlying programming concepts that are common to most languages and understand how computers and operating systems work. Learning a lower-level language like C (or C++ without all the abstract stuff) is helpful here, as it teaches you how the system works without a lot of abstraction.

If you want to write games for Windows, there is really only one path, and that is learning C++ and C (most C features are available from C++ as well, and most C code is valid C++). That is only the start though. After you do that, you have to learn the most common Windows APIs (which are all C, but accessible from C++). Once you've got the foundation of C++ and Windows down, you can move on to learning the basic 3D concepts (provided you understand the math already). Once that's done, you can start learning Direct3D and the other toolkits that make up DirectX (ie sound, input/output, etc). You'll also have to learn the basics of the various graphics and 3D tools, since you'll probably want to make basic mock-up graphics yourself.

If, on the other hand, you want do do iPhone development, you'll have to fork up the cash for a Mac and the development tools (you cannot do this from Windows), and then learn objective-C and the basics of OS X. Android, I believe is focused solely on running Java programs (at least it is on the phones currently on the market), so you'll have to know Java and the APIs it uses.

  • 0
If you want to write games for Windows, there is really only one path, and that is learning C++ and C (most C features are available from C++ as well, and most C code is valid C++). That is only the start though. After you do that, you have to learn the most common Windows APIs (which are all C, but accessible from C++). Once you've got the foundation of C++ and Windows down, you can move on to learning the basic 3D concepts (provided you understand the math already). Once that's done, you can start learning Direct3D and the other toolkits that make up DirectX (ie sound, input/output, etc). You'll also have to learn the basics of the various graphics and 3D tools, since you'll probably want to make basic mock-up graphics yourself.
For a game development career, that's true, but a hobbyist can write games for Windows using C# and XNA, or Python and PyGame or any similar tools, and be a lot more productive (and have that much more fun doing it) than going the long-winded C++/D3D path. Also, all the non-framework-specific things you learn using these tools are valid if you later learn C++ and DirectX. 3D math, pathfinding, game architecture, basic UI skills, etc., those are the most important skills and they apply whatever language you use.
  • 0

Thanks again for the replies!

I doubt you will score a fulltime career without a CS degree. In my university comp sci classes has a few 40-50 year old people trying to get their degree because they can't even find a job with 20+ years of programming experience.

Yeah, I realize this. If programming became more of a hobby for me, I'd have no problem going back to school for a CS degree. Then again, Ken Levine, creator of System Shock & BioShock, had a BA and look at him now... so I have hope.

Thanks for your advice as well, Dr_Asik... especially the Visual C++ settings advice... I probably would not have been able to figure that out myself!

hdood, thanks for the informative reply. In terms of PC game development (starting with Windows), I'd most likely start with 2D games (platformers, RPGs)... of course, this is once I even get to the point of being able to do this, which I realize is down the long road. (Then again, with learning any skill, it takes years so I don't expect programming to be any different... if anything, I imagine it takes longer)

I understand there is a large difference in difficulty in creating 2D vs 3D games as well... but that is far down the road. I guess I shall get my bearings on C/C++ down first. I understand why people go to school to learn this stuff - it can be intimidating without direction from a knowledgeable person.

I'll be checking this thread from time to time, so if anyone has last-minute advice on direction for me, I would appreciate it. :)

  • 0
hdood, thanks for the informative reply. In terms of PC game development (starting with Windows), I'd most likely start with 2D games (platformers, RPGs)...

[...]

I understand there is a large difference in difficulty in creating 2D vs 3D games as well... but that is far down the road.

Yeah, but 2D stuff is actually made with Direct3D now. It's just a 3D scene with no depth so that everything looks flat. If you're running Vista or Windows 7 you're even looking at a Direct3D scene right now. Your browser window is actually two flat triangles put together to create a square, and then the contents of the window is pasted onto them as a texture.

Asik's suggestion of C# and XNA might be an option to get something working faster and familiarize yourself with gaming concepts, even if the language and toolkit isn't very relevant for real game development.

  • 0
It teaches the underpinnings of OO. He's already done OO in Java. C teaches you how OO is implemented. Back when I tutored people and had to explain to them things like static and virtual methods, I often found that the best explanations, the ones that elicited a "oh, I get it now, that makes so much more sense than how I was taught" was when I broke things down and explained how OO was implemented and how that affects why some things in OO are the way that they are.
First, you overestimate his skills in object-oriented programming. He's done a high school class in Java 6 years ago. It takes much more than a single introductory course in programming to learn anything about OOP, even if it's in a pure OO language like Java; moreover, this was a high-school level course and he's likely forgotten most of it.

As a result, learning C won't help him understand the underpinnings of OOP because he barely has any notion of OOP. Rather than bringing him a better understanding of already well-known high-level languages, it will teach him how to do things in a simple procedural way, making the transition to OOP less natural. I think it's better to get a very good feeling of OOP asap because good habits are essentials and bad habits are hard to get rid of. Thus my recommendation of C#. Or even C++ for that matter (even though it sucks as an OO language).

It's the difference between telling someone that they can use a fire extinguisher to put out a fire and explaining to someone what goes on chemically when something burns and how, as a result, you can stop a fire by either depriving it of the reactants--the latter makes the former more understandable and also opens up a wider perspective (e.g., "so that means that I can also stop a fire by dumping sand on it since that too will choke out the oxygen, right?").
Sure. But it's better to teach them first how to use a fire extinguisher, so that if a fire starts before the course is over, at least they'll be able to do something against it. Knowing how to use a fire extinguisher, they could even start earlier practicing other fire-fighting skills such as safely evacuating the building, using the right extinguisher against a certain type of fire, etc. With a higher-level language, you're not only productive faster, you also start learning other important programming skills earlier, such as reusing well-tested code instead of making up your own, decoupling components using interfaces, events, making exception-safe code, etc. It's not wasted time.
You don't have to use the preprocessor that much, and C does not encourage the use of global variables. The so-called "abuse" of casting is just a way of revealing How Things Really Work. And I don't see how memcpy is abusive.
How things really work is that there are no type, no variables, no decimal values, no characters, no internet connections. There are just bits and buses. A C variable is an abstraction over a reserved memory area in assembly. A C for loop is syntactic sugar for a jump and a label in assembly. It's nice to know about it, but you rarely need to know what's happening at that level. And the same applies with C# vs C. Sure it's nice to know what really is a virtual method, but you rarely need to care about that. It's pretty advanced stuff and a beginner doesn't need to know about it right off the bat, it can be overwhelming. I think it's much more encouraging if a beginner can quickly see results with few lines of code and make lots of cool applications, then if he wants to take it to the next level he can look under the hood and try to understand how to write better code.

Also, you shouldn't be thinking your design at such a low-level. You should think your design at the highest possible level (interfaces, objects, packages, etc), and the highest possible level in C is depressingly low. There should be a difference between design and implementation, and C offers little support for that.

As for memcpy() : http://www.theregister.co.uk/2009/05/15/mi...anishes_memcpy/

It's very simple. And insanely powerful. And absolutely essential for anyone who wants to be a real programmer (instead of just a hobbyist). And an understanding of C will make so many things in other languages make more sense.
"Real programming" isn't synonymous with "system programming". Writing a windows application in Visual Basic is real programming. Writing an ASP.NET application for a web browser is real programming. Some programmers make a living out of just that, and they probably know a lot of things about application development a system programmer doesn't know. It's just a different field of specialization. A lot of C programmers today are unwilling to learn anything else than C and they can't do OOP and they can't do functional programming. Is that better? I think it's worse.

As for the rest, I share your views about the importance of learning the fundamentals of computing (yes, including C) and how it's important to know the implications of what you're writing in higher-level languages. Any good software engineering or computer science program in university should teach you that; if they don't, choose another university. But I think new programs should not be written in C unless it's absolutely necessary. Usually you can use at least C++. And usually only part of the program absolutely requires the use of a system language; the rest can be written in Python or Java or whatever. If you take games, for instance, only the engine is written in C++, the actual logic is written in Lua or other scripting languages. I think using these new languages greatly helps to make a smaller codebase, one that's faster to develop, easier to read, maintain and expand upon; and you can easily get good performance with them if you know what you're doing.

Edited by Dr_Asik
  • 0
First, you overestimate his skills in object-oriented programming. He's done a high school class in Java 6 years ago. It takes much more than a single introductory course in programming to learn anything about OOP, even if it's in a pure OO language like Java; moreover, this was a high-school level course and he's likely forgotten most of it.

Fair enough. I'll concede that.

I'll nit on this red herring: that's a really bad article. In version 13.1 of its compiler (first used in VC7.1, XPSP2, and 2K3SP1 and supported the an appropriate SDK update around the time), Microsoft introduced "safe" copy methods that it has been encouraging everyone to move towards (and this was made the default in 14.0). These safe methods (which encompasses far more than memcpy) basically just add "cookies" to the memory that it checks to make sure are not overwritten, and all that MS was doing was saying finalizing this transition to those methods. These are still C functions, but with some nanny-checking. And the funny thing is, despite this new policy change Microsoft is still discovering bugs. As it turns out, Microsoft programmers are not dumb, and various analysis of patches that they've released have revealed that, for the most part, they've covered all the obvious problems; the sorts of problems that are being discovered are much more complex and nuanced and are not going to be solved this way.

"Real programming" isn't synonymous with "system programming". Writing a windows application in Visual Basic is real programming. Writing an ASP.NET application for a web browser is real programming. Some programmers make a living out of just that, and they probably know a lot of things about application development a system programmer doesn't know. It's just a different field of specialization. A lot of C programmers today are unwilling to learn anything else than C and they can't do OOP and they can't do functional programming. Is that better? I think it's worse.

I never said that people should not learn OOP. What I did say and emphasized in my sentence "And an understanding of C will make so many things in other languages make more sense." is that anyone who wants to do real programming needs to know C, not so much because they'll actually use C, but because it is the necessary foundation. Scientists crunching data from an experiment are not going to do 1.2345678 * 8.7654321 on a piece of paper. They will use a calculator or something like MatLab. So does that mean that we should tell elementary school kids, "hey, you don't actually need to do long multiplication in your life, so let's not waste time on that in class". As I said at the end of my post, "I'm not saying that you should abandon C# for C, but rather that if you knew C, then that understanding of the guts of the system will make you a more efficient C# programmer."

I think where we differ is whether that foundation should be established first or is something that you go back and build after you've gotten the rest, and that's a legitimate area of debate. I've long advocated for Perl as a good first get-your-toes-wet language because it's multi-paradigm (you can do classic imperative, you can do some OOP, and you can do functional programming--my personal experience was that Perl helped make learning Lisp easy) and, most importantly, it's extremely forgiving (because even I don't think that the first experience of a programmer should be some cryptic compiler warning :)). And then after that, get into C (I recommended C in this thread because he had already done some programming before, so he was, in my mind, at step 2). Once someone has gotten down the basics (the concept of variables, loops, conditionals, and functions), then it's time to build the formal foundation in part because it's so easy to ignore that foundation it once you've gotten the other stuff down (and it annoys me that so many people do ignore it) and in part because I see knowing the low-level stuff as helping grasp the nuances of the high-level stuff and not so much the other way around.

  • 0
I think where we differ is whether that foundation should be established first or is something that you go back and build after you've gotten the rest, and that's a legitimate area of debate.

This is the main area that concerns me... I'm a little confused as to where to start. You guys are saying that C is a good step two, but I feel that after all this time away from the programming experience I've had, I should maybe start at step one for a month or two... or is that too short/long. Suggestions? :p

  • 0

To be honest, with enough motivation you can start with any language. I started with C++ which is very complex and has lots of quirks, but I read my manual from cover to cover and got fairly proficient with it in about 4 months. Then it was really easy to learn C, Python, C#, Java...

It depends on your philosophy. With, say, C#, you can get results very quickly and it's quite intuitive, so it's a less of a steep curve, but then the difficulty ramps up when you try to learn C or C++. If you start with C or C++, then it's hell in the beginning, but once you're through, the worst is behind you, so to speak.

If you're really serious about programming and want to dive right into the meat, C or C++ are sensible options. If you'd rather have a bit of fun doing it and seeing more powerful programs right away, start with C# (Python, Java, Visual Basic are all good options too, but C# is the most C-like and is generally awesome). What's interesting about C# is that you can download a tool called XNA and easily create 2D or 3D games.

With enough perseverance, both routes lead the same way... I'd personally take the fun one.

  • 0
I doubt you will score a fulltime career without a CS degree. In my university comp sci classes has a few 40-50 year old people trying to get their degree because they can't even find a job with 20+ years of programming experience.

I just stumbled upon this thread and I HAD to comment on this. Even though a CS degree will help you get through the door and have some (depending on skill, experience, etc) influence on a starting from the "middle" instead of from the bottom (junior programmer vs unpaid intern assisting a programming team), it is absolutely not a requirement most of the time. In this industry it dosen't really matter if you have a degree or not, nor does it matter if you've been on the typing end of a terminal for 10 years. What really matters is skill and branding of your persona. I'll be more specific. If you want to make a career on any type of software engineering industry, you can either: a) Get a CS degree and start working as a programmer (preferably at the same time... no sense in losing time ;) ). After you get your degree and a few years down the line you'll probably have the experience and the education to make an early dive into looking into managerial or higher remuneration positions, be it on your current company or a different one. The most important rule here is to have managers that love you, so as to get recommended. b) If you don't have a degree the most important things are to contribute to opensource projects, have developed a few useful tools, or a program used by many (helps if many == "many of your peers"), maybe write a blog where you document ideas, problems, et al., and most important of all, get your name out there (on and off line). The moment you're known for being a superb programmer with documented success in opensource and with tools and useful (for the community) past programming and/or writing on your toolbelt, you've got what any other college educated software engineer dosen't have. Cred.

PD: Or you can also start doing your own thing. Start a startup of some kind and try to make it big... or strive for slow but steady achievement and build a business form it. Also, this is coming from a Chief Software Architect at a decently sized company, with no degree. Well actually I lie, I do have a degree in Finance, but I got my finance degree a year after becoming a Senior Programmer at a different company and I made little mention of it when I was interviewed for the SA position.

  • 0

I've been working on some class testing to get back into C++, so I was once again trying to do things in a game-like way.

I created the following code:

#include &lt;iostream&gt;
using namespace std;

//----------Class Player----------
class Player
{
protected:
	int Health, Damage;
public:
	Player() { set(100, 10); }
	Player(int one, int two) { set(one, two); }

	int getHealth() { return Health; }
	int getDamage() { return Damage; }
	void set(int newHealth, int newDamage) { Health = newHealth; Damage = newDamage; }
	void Attack(Monster enemy);
};

//----------Class Monster----------
class Monster
{
protected:
	int Health, Damage;
public:
	Monster() { set(100, 10); }
	Monster(int one, int two) { set(one, two); }

	int getHealth() { return Health; }
	int getDamage() { return Damage; }
	void set(int newHealth, int newDamage) { Health = newHealth; Damage = newDamage; }
};

//----------Test Function Prototypes----------
void TestPlayerFunctionality();
void TestMonsterFunctionality();
void TestAttackFunction();

//----------Main Function----------
int main()
{
	TestPlayerFunctionality();
	TestMonsterFunctionality();
	//TestAttackFunction();
	system("pause");
	return 0;
}

//----------Player Class Functions----------
void Attack(Monster enemy)
{
	enemy.set(enemy.getHealth() - Damage, enemy.getDamage());
	cout &lt;&lt; "After you attack, the enemy's health is " &lt;&lt; enemy.getHealth() &lt;&lt; "\n";
}

//----------Test Functions----------
void TestPlayerFunctionality()
{
	Player *you = new Player(120, 15);
	cout &lt;&lt; "Your health is " &lt;&lt; you-&gt;getHealth() &lt;&lt; "\n";
	cout &lt;&lt; "Your damage is " &lt;&lt; you-&gt;getDamage() &lt;&lt; "\n";
	delete you;
}

void TestMonsterFunctionality()
{
	Monster *baddy = new Monster(20, 3);
	cout &lt;&lt; "Monster's health is " &lt;&lt; baddy-&gt;getHealth() &lt;&lt; "\n";
	cout &lt;&lt; "Monster's damage is " &lt;&lt; baddy-&gt;getDamage() &lt;&lt; "\n";
	delete baddy;
}

void TestAttackFunction()
{
	Player *you = new Player(120, 20);
	Monster *baddy = new Monster(100, 15);
	you-&gt;Attack(baddy);

	delete you;
	delete baddy;
}

and just about everything works (although I commented out the TestAttackFunction() test to be worked on later.

Upon compiling the code I have there, I receive the following errors:

Line 16: "syntax error : identifier Monster"

Line 51: " 'Damage' : undeclared identifier"

Line 76: "Player::Attack function does not take 1 argument"

I've revisited the Monster class, and it seems to be fine to me.

The Damage variable IS obviously declared within either class (including the Player class which the function refers).

The Player::Attack function does indeed take one argument, this makes no sense.

I was using references, such as "void Attack(Monster const &enemy);" but doing so brought up even more, less understandable errors.

Can anyone figure out what's going on here, because it is totally eluding me.

  • 0

I've been working on some class testing to get back into C++, so I was once again trying to do things in a game-like way.

I created the following code:

#include &lt;iostream&gt;
using namespace std;

//----------Class Player----------
class Player
{
protected:
	int Health, Damage;
public:
	Player() { set(100, 10); }
	Player(int one, int two) { set(one, two); }

	int getHealth() { return Health; }
	int getDamage() { return Damage; }
	void set(int newHealth, int newDamage) { Health = newHealth; Damage = newDamage; }
	void Attack(Monster enemy);
};

//----------Class Monster----------
class Monster
{
protected:
	int Health, Damage;
public:
	Monster() { set(100, 10); }
	Monster(int one, int two) { set(one, two); }

	int getHealth() { return Health; }
	int getDamage() { return Damage; }
	void set(int newHealth, int newDamage) { Health = newHealth; Damage = newDamage; }
};

//----------Test Function Prototypes----------
void TestPlayerFunctionality();
void TestMonsterFunctionality();
void TestAttackFunction();

//----------Main Function----------
int main()
{
	TestPlayerFunctionality();
	TestMonsterFunctionality();
	//TestAttackFunction();
	system("pause");
	return 0;
}

//----------Player Class Functions----------
void Attack(Monster enemy)
{
	enemy.set(enemy.getHealth() - Damage, enemy.getDamage());
	cout &lt;&lt; "After you attack, the enemy's health is " &lt;&lt; enemy.getHealth() &lt;&lt; "\n";
}

//----------Test Functions----------
void TestPlayerFunctionality()
{
	Player *you = new Player(120, 15);
	cout &lt;&lt; "Your health is " &lt;&lt; you-&gt;getHealth() &lt;&lt; "\n";
	cout &lt;&lt; "Your damage is " &lt;&lt; you-&gt;getDamage() &lt;&lt; "\n";
	delete you;
}

void TestMonsterFunctionality()
{
	Monster *baddy = new Monster(20, 3);
	cout &lt;&lt; "Monster's health is " &lt;&lt; baddy-&gt;getHealth() &lt;&lt; "\n";
	cout &lt;&lt; "Monster's damage is " &lt;&lt; baddy-&gt;getDamage() &lt;&lt; "\n";
	delete baddy;
}

void TestAttackFunction()
{
	Player *you = new Player(120, 20);
	Monster *baddy = new Monster(100, 15);
	you-&gt;Attack(baddy);

	delete you;
	delete baddy;
}

and just about everything works (although I commented out the TestAttackFunction() test to be worked on later.

Upon compiling the code I have there, I receive the following errors:

Line 16: "syntax error : identifier Monster"

Line 51: " 'Damage' : undeclared identifier"

Line 76: "Player::Attack function does not take 1 argument"

I've revisited the Monster class, and it seems to be fine to me.

The Damage variable IS obviously declared within either class (including the Player class which the function refers).

The Player::Attack function does indeed take one argument, this makes no sense.

I was using references, such as "void Attack(Monster const &enemy);" but doing so brought up even more, less understandable errors.

Can anyone figure out what's going on here, because it is totally eluding me.

Are your classes in seperate files? If so, be sure to add "#include <monster.h>" at the top of the player class. Also, it is very difficult to follow the organization of this code. I see the function prototypes, but I do not see the seperate function implementations. For example:

void Player::Attack(Monster enemy)
{
}

Those have to be outside of the class itself. :)

  • 0

[edit] wouldn't be bad to make this a sticky thread, so others may be able to use it without me repeating myself. This is a very common question here.[/edit]

if you don't have a compiler (to make .exe) go to http://www.bloodshed.net/dev/index.html download version 4, version 5 is a buggy beta. if you do dl ver.5, then update .exe using cvs at sourceforge.

As for books go, the best one is "The c++ programming language" by Bjarne Stroustup (the inventer of c++) is the best. Itis one of those books that from a beginner to Linus Torvalds (linux guy) and developpers use.

edit: the sites below all helped me in some way or another. First you should learn c programming, then move on to c++ and win32api and other api's.

http://www.cplusplus.com/doc/tutorial/ This site covers a lot! I learned a lot of Object Oriented Programming from here.

http://www.cplusplus.com/ref/ This is a handy site for beginners. This has examples and instructions for many standard library functions.

http://www.sgi.com/tech/stl/ This is handy resource. Most of functions show prototypes and explenations for all of STL.

http://www.allegro.cc This has an easy to use complete game programming library. It's well evolved and used. It supports directx hardware accel through its functions.

http://www.sourceforge.net This is for those of you interrested in developping open source, giving feedback, bug reporting, latest builds, and complete code of some of your favorite apps... and much much more.

http://oopweb.com/CPP/Files/CPP.html This has a list of many tutorials and other resources.

http://www.msdn.microsoft.com A developer's ultimate resource.

http://www.winprog.org/tutorial The best site for learning windows programming. The guy set out to make it easy and quick. I think he certainly achieved his goal.

http://www.cprogramming.com/tutorial.html another c tutorial

http://www.research.att.com/~bs/homepage.html The inventors home page.

Nice tips/resources! Thanks for sharing!

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • One big question about Mars was answered thanks to Einstein's 100 year old theory by Sayan Sen Image via DepositPhotos Scientists at the U.S. National Institute of Standards and Technology (NIST) have calculated how time passes on Mars compared with Earth, adding detail to how timekeeping would need to work beyond Earth’s orbit. The study, published in The Astronomical Journal, found that clocks on Mars run an average of 477 microseconds, or millionths of a second, faster per day than clocks on Earth. A microsecond is one millionth of a second, a very small unit used in precise scientific timing systems such as atomic clocks, which measure time using consistent atomic behavior. This difference is not constant. Because Mars moves around the Sun in a non-circular path (an eccentric orbit, meaning its distance from the Sun changes over time instead of staying fixed) and is affected by gravity from other bodies, the daily difference can vary by as much as 226 microseconds over a Martian year. The study also identifies smaller repeating changes of about 40 microseconds per day linked to synodic cycles (repeating periods that describe how planets line up with each other as they orbit the Sun from different positions). These longer patterns affect how time differences slowly rise and fall. To make these estimates, researchers compared Mars with Earth and the Moon. The work looks at relativistic proper time (the time actually measured by a clock depending on its speed and the strength of gravity where it is located, as described in Einstein’s relativity). This shows that each world has its own slightly different “rate” of time. This becomes more important as space missions expand into cislunar space (the region between Earth and the Moon) and toward Mars. On Earth, time systems rely on atomic clocks and satellites, which stay closely synchronized for navigation and communication. The study is based on Albert Einstein’s theory of relativity, which shows that time is affected by gravity and motion. Stronger gravity makes clocks run slower, while weaker gravity makes them run faster. “The time is just right for the Moon and Mars,” said NIST physicist Bijunath Patla. “This is the closest we have been to realizing the science fiction vision of expanding across the solar system.” A day on Mars is about 40 minutes longer than on Earth, and a Martian year lasts 687 Earth days. But the main question is not just about days and years, but how fast time itself passes. An atomic clock placed on Mars would function normally, but compared with one on Earth, the two would slowly drift apart due to differences in gravity and motion. This requires careful calculation of what is similar to a time-zone difference across planets. Researchers modeled Mars using a reference surface and included gravitational effects from the Sun, Earth, the Moon, and other planets. This includes a multi-body gravitational system (often described as a three-body or four-body problem, where predicting motion becomes difficult because multiple large objects all pull on each other at the same time through gravity). Mars also follows a Keplerian orbit (an idealized elliptical orbit based on simple gravitational laws that assume smooth motion, before adding real-world disturbances from other bodies). In addition, the researchers accounted for solar tides (small changes in gravitational force caused by the Sun that slightly distort planetary motion and timing, especially in systems involving Earth and the Moon). These combined effects are described as relativistic proper-time offsets (small but measurable differences in elapsed time between locations caused by gravity and motion), which must be included when comparing clocks across planets. “But for Mars, that’s not the case. Its distance from the Sun and its eccentric orbit make the variations in time larger. A three-body problem is extremely complicated. Now we’re dealing with four: the Sun, Earth, the Moon and Mars,” Patla explained. “The heavy lifting was more challenging than I initially thought.” Although the differences are extremely small, they matter for navigation and communication systems that depend on precise timing. Even modern networks on Earth, such as mobile systems, rely on timing accuracy at very small fractions of a second. Communication between Earth and Mars currently takes about four to 24 minutes or more depending on planetary positions, meaning signals are not real-time. A shared and accurate time system could help future missions reduce confusion in navigation and data exchange. “If you get synchronization, it will be almost like real-time communication without any loss of information. You don’t have to wait to see what happens,” Patla said. Researchers note that fully developed interplanetary communication networks are still far in the future. However, understanding how time behaves across planets helps prepare for those systems. “It may be decades before the surface of Mars is covered by the tracks of wandering rovers, but it is useful now to study the issues involved in establishing navigation systems on other planets and moons,” said Neil Ashby. “Like current global navigation systems like GPS, these systems will depend on accurate clocks, and the effects on clock rates can be analyzed with the help of Einstein’s general theory of relativity.” Patla added that the results also help improve understanding of time itself under relativity. “It's good to know for the first time what is happening on Mars timewise. Nobody knew that before. It improves our knowledge of the theory itself, the theory of how clocks tick and relativity,” he said. Source: NIST, IOPscience This article was generated with some help from AI and reviewed by an editor. Under Section 107 of the Copyright Act 1976, this material is used for the purpose of news reporting. Fair use is a use permitted by copyright statute that might otherwise be infringing.
    • TeraCopy 4.0 Build 26 by Razvan Serea TeraCopy is a compact program designed to copy and move files at the maximum possible speed, also providing you with a lot of features. Copy files faster. TeraCopy uses dynamically adjusted buffers to reduce seek times. Asynchronous copy speeds up file transfer between two physical hard drives. Pause and resume transfers. Pause copy process at any time to free up system resources and continue with a single click. Error recovery. In case of copy error, TeraCopy will try several times and in the worse case just skips the file, not terminating the entire transfer. Interactive file list. TeraCopy shows failed file transfers and lets you fix the problem and recopy only problem files. Shell integration. TeraCopy can completely replace Explorer copy and move functions, allowing you work with files as usual. TeraCopy is free for non-commercial use only. For commercial use you need to buy a license. The paid version of the program includes the following features: Copy/move to your favorite folders. Save reports as HTML and CSV files. Select files with the same extension/folder. Remove the selected files from the copy queue. TeraCopy 4.0 Build 26 changelog: Added support for receiving files via the LocalSend protocol. Improved exception handling and automated bug report upload. Fixed several minor bugs and small memory leaks. Build 26 (June 24) Fixed a rare exception when a transfer completed. Features added since version 3.17: Enhanced speed graph. New multi-threaded copy engine. Support for copying to multiple targets. Queue system for managing multiple copy operations. Support for receiving files via the LocalSend protocol. TeraCopy entry in the modern Windows Explorer context menu. Integrated toolbar in the title bar. Why receive LocalSend transfers with TeraCopy? Handle file conflicts: Skip, overwrite, or rename files when a file with the same name already exists. LocalSend always creates another copy, which can waste time and disk space, especially when resuming an interrupted transfer. Filter unwanted files: Apply ignore lists or remove files manually before accepting a transfer, so unnecessary files are not downloaded. Better performance on fast networks: In tests over a 10 Gbps connection, TeraCopy received files several times faster than the standard LocalSend app on Windows. Download: TeraCopy 4.0 Build 26 | 14.5 MB (Freeware, paid upgrade available) View: TeraCopy Website | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • Briefly used Turbo Pascal (and Turbo C++) in 97 and soon after that I bought PC magazine that included a full version of Delphi 2. I still use Delphi today, some 29 years later.
    • Age of Empires Mobile comes to PC, here's how to carry over progress from your phone by Ivan Jenic Image: YouTube/Microsoft Microsoft just released Age of Empires Mobile for PC. The game, officially called Age of Empires Mobile: PC Edition, is available for free on Steam and Microsoft Store, almost two years after its initial release for handheld devices. Age of Empires is one of those franchises that entire generations grew up with. The original came out in 1997, and immediately got people hooked to building civilizations and crushing their enemies on the battlefield. However, the franchise today is a far cry from its roots, as Age of Empires Mobile is, well, a game optimized for handheld devices, and not a classic RTS title we’ve all loved for years. And, of course, it includes in-game purchases. The PC version is still a mobile game at its core, but it’s been optimized for desktop play. There’s mouse control, full keyboard compatibility, and a refined UI. Microsoft also refreshed the visuals with some 4k textures, so the game should look better on larger screens. The game supports Crossplay, so you can switch between your phone, tablet, and PC without losing anything. But linked progress doesn’t come out of the box, as you have to enable it first. Here’s how to link your progress: On your mobile device, open Age of Empires Mobile. Go to Settings (Gear icon) > Account. Select Bind Account and choose a sign-in option. Once you enable account binding, sign in on PC using the same method, and your progress will be accessible across all your devices. Xbox Game Pass subscribers also get a bonus reward pack on PC, which includes: 1 Monthly Pass Token 1 Custom Resource Chest 10 Universal 60-Minute Speed-Ups 1,000 Empire Coins Exclusive Player Portrait Frame You can find more info about Age of Empires Mobile: PC Edition, as well as download links, on the Age of Empires official website.
    • Apple Watch Series 11 GPS just crashed to 30% off in this fast-moving Prime Day deal by Karthik Mudaliar The Apple Watch Series 11 is available for $279, down from its $399 list price, saving buyers $120, or 30%. Amazon labels the offer as selling fast, so the current price may not remain available for long. This GPS model features a 42mm aluminum case, an Always-On Retina LTPO3 OLED display capable of reaching up to 2,000 nits, and an Ion-X glass surface with improved scratch resistance. Apple rates Series 11 for up to 24 hours of normal use or up to 38 hours in Low Power Mode, with fast charging providing up to eight hours of use from a 15-minute charge. Health and fitness tools include sleep scoring, temperature sensing, ECG support, heart-rate alerts, workout tracking, sleep apnea notifications, and hypertension notifications, where available. The watch also carries IP6X dust resistance and 50-meter water resistance. This configuration is best suited to iPhone owners who want comprehensive health tracking, notifications, contactless payments, and workout data without stepping up to a larger or cellular-equipped model. The smaller case should also appeal to buyers who prefer a lighter watch, while the S/M band fits wrists measuring 130mm to 180mm. With the current generation now significantly below its usual retail price, this is a strong time to replace an aging Apple Watch or buy a first model without compromising on Apple’s newest health and display features. Grab the discounted Apple Watch Series 11 (sold and shipped by Amazon) Good to know This Amazon deal is U.S. specific, and not available in other regions unless specified. We only use first-party seller links (at the time of article publishing); ensure that you purchase from a first-party seller link only. Check out Today's Deals on Amazon | or our recent tech deals. Become a Prime member (for Students or SNAP) via Neowin Get Prime Access - Prime for half price (for qualifying Medicaid, EBT, SNAP) Subscribe to Prime Video, Audible Plus, Music Unlimited or Kindle Unlimited via Neowin As an Amazon Associate, we earn from qualifying purchases.
  • Recent Achievements

    • One Year In
      Philsl earned a badge
      One Year In
    • Dedicated
      Scoobystu earned a badge
      Dedicated
    • First Post
      Tom Schmidt earned a badge
      First Post
    • One Month Later
      D0nn13 earned a badge
      One Month Later
    • Rookie
      +ChiefOfNeo went up a rank
      Rookie
  • Popular Contributors

    1. 1
      +primortal
      460
    2. 2
      +Edouard
      177
    3. 3
      PsYcHoKiLLa
      124
    4. 4
      Michael Scrip
      79
    5. 5
      Xenon
      76
  • Tell a friend

    Love Neowin? Tell a friend!