Cristián Romo

1,662
Reputation
295 views

Registered User

name Cristián Romo
member for 1 year
seen 2 hours ago
website
location US
age 18
I'm a young programmer that learned to program in C/C++ on embedded systems, but I do have some Python experience and have played with Ruby, PHP, Common Lisp, and SQL.

I hope to go into the game programming industry, primarily on consoles. By the time I graduate college, there will hopefully be new systems to play with.
Nov
25
comment What is the worst real-world macros/pre-processor abuse you’ve ever come across?
@paxdiablo: Well, I have heard it called "Portable assembly." It lives up to its name well.
Nov
20
comment How can you tell if a person is a programmer?
C-based? Python, Ruby, and Common Lisp all start indexing at 0. The only language I personally know that starts at 1 is Lua.
Nov
18
comment the compiler doesn’t seem to accept Agent class
@Troubadour: Hey, I missed that one. Good catch.
Nov
18
comment the compiler doesn’t seem to accept Agent class
That's what the compiler thinks, but that's not what's intended.
Nov
18
revised the compiler doesn’t seem to accept Agent class
Added how to use the dynamically allocated approach.
Nov
18
comment the compiler doesn’t seem to accept Agent class
@ChadNC: I didn't down vote because "I don't think there is a new operator in C++," I down voted because it's being used inappropriately. To get use the new operator without leaking memory, you need theAgent to be an Agent*, and all members would be accessed with the pointer to member operator ->. This leaves the pointer accessible so that the memory can be `delete`d later.
Nov
18
revised the compiler doesn’t seem to accept Agent class
Added how to fix the problem, rather than just answering the question as asked. (The question behind the question, really.)
Nov
18
comment the compiler doesn’t seem to accept Agent class
This might work (and indeed will, since you're using the default copy constructor,) but it will leak memory. This is because you are assigning the contents of the new Agent (allocated on the heap) to theAgent. Since C++ isn't garbage collected and you aren't keeping a reference to the allocated memory to delete, this memory will not be reclaimed until the program terminates. Don't do it this way.
Nov
18
comment the compiler doesn’t seem to accept Agent class
Copy constructor actually.
Nov
18
answered the compiler doesn’t seem to accept Agent class
Nov
13
comment Templates, nested classes, and “expected constructor, destructor, or conversion before ‘&’ token”
Extern templates? I'm including both the declaration of the class and the definition into the using file. That seems like it'd be the same as if I'd just done it all in one file to me.
Nov
12
comment Templates, nested classes, and “expected constructor, destructor, or conversion before ‘&’ token”
How is the first one ambiguous? I don't see it.
Nov
12
comment Templates, nested classes, and “expected constructor, destructor, or conversion before ‘&’ token”
After Charles Bailey's fix, including the .cpp file allows the client program works. It's not the way I'd do it, (heck, as far as I know, the standard library and Boost use the only header approach,) but it's the way the teacher wants it.
Nov
12
comment Templates, nested classes, and “expected constructor, destructor, or conversion before ‘&’ token”
I know. It's for college, and I don't agree with half the majority of the style guidelines. However, realize that this isn't part of the assignment, but something I did to solve the assignment. We haven't even gotten to pointers, templates, or even classes yet.
Nov
12
asked Templates, nested classes, and “expected constructor, destructor, or conversion before ‘&’ token”
Nov
11
comment Can Go programming language replace C/ C++ ?
@Xinus: What I think he means is that Go is directly compiled to native code, whereas Java is compiled to an intermediary instruction set and then JITed. So an advantage Go has over Java is that it can work without an intermediary step.
Nov
11
comment What’s your take on the programming language Go?
@fbrereto: I think that - is a better candidate; it looks like a continuation of one string to the next and illustrates that it is non-commutative. "Hang on... " - "I'm almost finished."
Nov
11
comment What’s your take on the programming language Go?
That would be Mark Twain: en.wikiquote.org/wiki/Mark_Twain#History
Oct
30
comment Great programming quotes
Yes. (15 chars)
Oct
27
comment What are your favorite metaphors for technical concepts?
That's true. That makes you're average yield one per month.
Oct
26
comment Most difficult programming explanation
It'll be visible when you change something and it doesn't work anymore.
Oct
21
comment Why are C, C++, and LISP so prevalent in embedded devices and robots?
Lisp can be interpreted or compiled. That's one of the strengths of Lisp.
Oct
14
comment What’s your most controversial programming opinion?
@csuporj: C and C++ may be old languages, but they are still widely used. I think that disqualifies them from being obsolete.
Oct
14
comment Reading a file name from piped command
As a small nitpick - I think you got argv and argc swapped. argc stands for "argument count," and argv stands for "argument values." It'll still work if you swap them, (it's just a convention,) but it might confuse others.
Oct
12
comment Most horrifying line of code you have ever seen?
Ouch. I've done that before. Now that I know about it though, it's one of the first things I check.
Oct
12
comment Most horrifying line of code you have ever seen?
That really made me laugh out loud.
Oct
10
comment Experiences with D-programming-language
@BCS: I agree, the fact that D has even this level of support this early into it's life may be an indicator of it's future success.
Oct
10
comment Usage of D in the Field
Since D emphasizes that it should be simple to implement the language, so to keep the complexity down, it doesn't support everything in C++ (which is syntactically a very complex language) because that would mean practically having a C++ compiler in the D compiler. This reduces the number of libraries that can be interfaced with, and there's not a list of which ones work and which ones don't. D doesn't provide it's own because it's still young - it only came out in 2007, whereas C++ has had decades to amass libraries.
Oct
10
comment What is the single most effective thing you did to improve your programming skills?
I agree with mmyers - just because you disagree with someone doesn't mean you're ignoring them. Actually, it's the opposite - in order to disagree with them you're actually paying attention to them.
Oct
9
comment Great programming quotes
And he was able to get it done in one night because he uses Lisp.
Oct
8
comment What _did_ the C operators /\ and \/ do?
I saw this when I was browsing through the C99 standard and thought, "Hey that's cool! ... and mostly useless."
Oct
8
answered What _did_ the C operators /\ and \/ do?
Aug
17
comment Worst UI You’ve Ever Used
At least it doesn't have a color scheme that makes your eyes bleed.
Aug
17
comment Worst UI You’ve Ever Used
I'm not sure this is a novice user - they do have the menu bar showing, and it takes some know-how to do that.
Aug
15
comment What is your best programmer joke?
What's even worse is that there's a syntax error;
Aug
14
awarded  Yearling
Jul
28
answered static constructors in C++? need to initialize private static objects
Jul
22
awarded  Nice Answer
Jul
15
asked Newlines in string not writing out to file
Jul
8
awarded  Disciplined
Jul
6
answered Pointers to virtual member functions. How does it work?