@RMartinhoFernandes I am not so convinced that it is evil if the function closing a file can throw. The thing is, the Win32 API function for closing a file (::CloseFile()?) does return an error code, of course, if it fails to close the file. Somewhere, deep inside a file stream dtor, the C++ std lib calls this, of course. What do you think happens if that fails?
The main difference between Java and C++ is here that in Java I have the choice whether (and how) I want to handle this, in C++ I don't. That's surprising, as it seems to be the opposite of what the philosophy of the two languages are.
the Windows API docs seem to suggest you can only get an invalid return from CloseHandle() if you passed in a value that isn't a valid HANDLE to begin with
@RMartinhoFernandes Why, because it aborts the app? If I were implementing the C++ std lib, then I'd assert the Closehandle() call, which leads to the same.
@sbi No, because you have two choices to make your program compile: add a try-catch-swallow around the close() call, or add throws IOException to the signature of that method and all methods that call it.
void f() {
FileInputStream f = new FileInputStream("blah");
try {
// do stuff
} finally {
f.close();
}
}
This code doesn't compile.
To compile you need to: 1) add boilerplate or 2) make sweeping changes across your application's signatures.
If f() is implementing an interface method, you can't even pick 2 unless you change the interface, which can be a versioning nightmare.
Java checked exceptions are not like C++ exception specifications.
If you use a rogue compiler to compile code that throws checked exceptions that are not in the signature, the runtime doesn't give a fuck. It may terminate your app if you don't have a handler for the exception, but it won't do anything like terminate() or unexpected() or whatever that was.
At one stage, I thought that openGL was a hard set of code to learn to use, but nothing too extreme. I then tried using openGL in Java... it hurts so badly
@DeadMG it's a pain to use sure, but at least in C++ passing an array of unsigned shorts is as simple as declaring an array of unsigned shorts and passing it to a function ¬_¬
sometihng along the lines of... GL gl = glDrawable.getGL(); // glDrawable being passed into your function gl.glColour3ubv(); // passing the magic there
I partially agree with you @jalf it is frustrating to learn something to only find out it is pointless, but at the same time, it is kind of hard to learn how to do everything wit hopenGL at once
so ignoring things like shaders at first makes sense
rather than starting with pure garbage, and then telling the student later on "oh, btw, forget everything I taught yuo until now. Let's start over and this time, use the right APIs"
shaders are simple: you write a small program which transforms your data the way you want it transformed. Any programmer can do that. Mucking around with the fixed function pipeline requires you to understand 30 years of bad APIs, a million hidden gotchas and arbitrary constraints
@thecoshman are you sure you're not trying to be a tour guide on a museum?
When people come to you and ask "how do I use OpenGL", is it because they want to write an OpenGL application (in which case they should be taught how to do it right), or because they want to know how the API has evolved over the last several decades?
But then beginners don't appreciate them as I do! We used to live in an old water tank on a rubbish tip. We got woke up every morning by having a load of rotting fish dumped all over us! Shaders? Huh.
That's one thing that confused me, in Java throwing and catching exceptions is a normal thing to do. I was happy with my way of dealing with them in C++, don't use them
@RMartinhoFernandes no. I just never added them into my code, apart from a few cases where a library did. I was used to handling things going wrong and returning (or setting) and error status that could be checked
Java mentality seems to be along the lines of, you passed me a bad argument, throw an badArgument exception
@sam Asking your question 3 times in 5 mins will not help you, if no one answers they probably can't or don't like to help at the moment. Besides, if you really have a question you're probably better of on the Q&A site itself (in this case probably SuperUser)
Let's consider first only include paths.
The Microsoft documentation states that the compiler searches for directories in the following order:
Directories containing the source file.
Directories specified with the /I option, in the order that CL encounters them.
Directories specified in the ...
I never understood why languages like Java (or .NET) chose not to have a deterministic way of releasing resources. Obviously the garbage collection thing helps avoiding memory leaks but I find it so unnatural.
Perhaps I have the wrong mindset to understand clearly the benefits.
@jalf Well, but then... attributing this "reasoning" to people preferring C++ is also a red herring. Nobody likes C++ because it can blow off your foot. Well, not sane people, anyway.
The nice things about C++ IMO aren't that it allows me to fuck up my application, but that things like RAII, the STL and generic programming allow a high degree of expressiveness and enable me to write robust code that's hard to misuse.
@sbi judging from what some people say about C++'s "strong sides", apparently quite a few people like that aspect of C++
The whole "I want full control" thing, or "it's more powerful"
is basically just another way of saying "it lets me blow off my foot"
@CatPlusPlus assembly that is most of control that you can get over your system, but how practical is writing programs with assembly in 2012 is another question.
@jalf No, it's not. Being able to deterministically free resources gives you great control over the runtime behavior of your application without necessarily blowing off your foot.
Anyway, I gotta go and pick up some of my kids. See you later!
Does anyone know how to make my collegues love and embrace "good practises" ? I'm sick of having to cast every single const char* to char* to be able to use their legacy libraries...
@OmeidHerat Assembly doesn't give you any more power than C++, save for direct access to the instruction set (which C++ compilers allow you to do, anyway).
I think .Net could implement this better, if it had a generic exception handler at every object level. That way you could catch, Dispose, then rethrow.
I mean, you can always link to the static runtime but just imagine : if every program on earth compiled used VC10 did that, we would need even bigger hard-drives
I need to get fieldinfo in a guaranteed order. Right now I'm using attributes to specify order.
Is there a more automatic way of doing this?
Does anyone have knowledge of how LayoutKind.Sequential works, and if I can apply it's technique.
I don't see how LayoutKind.Sequential works, unless the...
It implements all the runtime functionality that you may or may not rely on. iostreams, calling the main function at startup, initializing statics, exception handling and so on
@Nils no, the other way around. The STL is basically header-only, so it's not in the runtim
but other parts of the standard library rely on a runtime library, and the STL relies on functionality such as exceptions, which might be implemented by the runtime
Well I'm trying to link everything statically to a program depending on glfw. The glfw readme says that I have to link to the following libs: glfw.lib opengl32.lib user32.lib . This works fine as long as I don't use -MT if I do I get the error above, using nodefaultlib doesn't work either, because then it doesn't find glfw anymore.
I have done C++ dev mostly on Linux / Mac, that's why I ask such dumb questions.
A declaration introduces an identifier and describes its type, be it a type, object, or function. A declaration is what the compiler needs to accept references to that identifier. These are declarations:
extern int bar;
extern int g(int, int);
double f(int, double); // extern can be omitted for...
Hm, somebody removed a whole paragraph from my question... what do you think about that?
The funny thing is, I see the same people throwing exceptions or calling methods that might throw exceptions everywhere. Some methods have dozens of exit points, even with only one return :)
http://stackoverflow.com/questions/8068886/static-field-of-an-incomplete-type-is-it-legal Is this a good (or good enough) question? You know, it's my first, I'd like to know whether I've done some glaring mistakes or not.
Is declaring a static field of a type that is incomplete at the moment of the class definition legal in C++? For example:
Foo.h:
class Foo
{
public:
// ...
private:
class Bar;
static Bar something;
};
Foo.cpp:
class Foo::Bar
{
// ...
};
Foo::Bar Foo::something;
// some more code
...
The Standard specifies that hexadecimal constants like 0x8000 (larger than fits in a signed integer) are unsigned (just like octal constants), whereas decimal constants like 32768 are signed long. (The exact types assume a 16-bit integer and a 32-bit long.) However, in regular C environments both...
Yes, it can matter. If your processor has a 16-bit integer and a 32-bit long type, 32768 has the type long (since 32767 is the largest positive value fitting in a signed 16-bit integer), whereas 0x8000 (since it is also considered for unsigned int) still fits in a 16-bit unsigned integer.
Now con...
@Sbi - I tend to agree, but I wouldn't say it's NAA flag worthy. It doesn't add anything over the other "GOTO consider harmful" reference which was posted 6 hours before it
Wow, Programmers.SE is a strange place. My answer today stormed my personal answer hit list on PSE within a few hours, thereby overtaking the one which did the very same only last week. It's now almost twice as high as the most-upvoted answer I managed to get in >2 years on SO.
@sbi - I'm still slightly shocked that my slightly flippant "it's neither" answer to that "is this code C or C++?" question got > 200 upvotes on SO proper