Martin York

24,767
Reputation
1880 views

Registered User

name Martin York
member for 1 year
seen 31 secs ago
website
location Seattle
age 40
A person who likes C++

Currently experimenting with javascript and PHP to make interesting webpages.
1h
comment C++ vs Java constructors
@dribeas: I would say that the constructor is called but does nothing.
1h
comment To what extent is using “delete this” compliant to C++ standard?
@Steve: Technically anybody can turn up to the C++ standards meetings. But has he contributed any seminal papers? Anything that has even lead to a discussion? I don't know just asking.
1h
comment Read from same file (until EOF) using ifstream after file contents change
a file is not the best tool to communicate between two processes. You should look into using a socket.
6h
awarded  Nice Question
8h
comment Should “delete this” be called from within a member method?
@Adam: Thanks. But as pointed out it 'can' be useful. But in modern C++ it is considered better practice to separate management of the object from the implementation of the object (Hence smart pointers are now used rather than COM). Also note a management object can easily grantee that the object it manages is dynamically allocated so that is completely a false premise.
10h
comment Should I revive Clippy ? aka how can i provide user-friendly tips and help in a desktop application ?
10% rule. You need to be 10% smarter than the tools you use.
16h
comment Should “delete this” be called from within a member method?
Or here is a link that explains the danger and reading between the lines of why you should not do it.
19h
comment Why do C++ class definitions on Windows often have a macro token after ‘class’?
@xtofl: #define is the long way of saying a macro
19h
answered Why do C++ class definitions on Windows often have a macro token after ‘class’?
21h
comment .c_str() weirdness? Data changes without rhyme or reason?
Also note: You should only use use c_str() within the current statement. Saving it in a variable and using it later will probably cause problems down the road. Any modification to the original wstring object will potentially make the pointer returned by c_Str() invalid.
21h
comment Is there a way to prevent a header defined c++ function from being treated as inlined.
Unless you have a huge amount of evidense that the compiler is inlining when it should not be. Then avoid this like the plague. The compiler is much better at making these decisions than any human.
21h
comment Is there a way to prevent a header defined c++ function from being treated as inlined.
Just because a function is marked as inline (explicitly or implicityly) does not mean it is actually inlined. For example, The compiler can not inline a function that has its address taken (will it can but its very hard so most don't bother).
21h
revised Should “delete this” be called from within a member method?
added 238 characters in body
21h
answered Should “delete this” be called from within a member method?
21h
comment Should “delete this” be called from within a member method?
My argument against it. Is that there is no way for the object to know if it was dynamically allocated. Thus there is no way to make sure at the compiler level that the delete is valid.
22h
revised not2 stl negator
added 500 characters in body; added 33 characters in body; added 25 characters in body; added 10 characters in body; added 70 characters in body
1d
answered not2 stl negator
1d
revised Static Global Fields in a Shared Library - Where do they go?
deleted 2 characters in body
1d
awarded  Popular Question
1d
revised C++ binary file I/O to/from containers (other than char *) using STL algorithms
added 29 characters in body
1d
awarded  Mortarboard
1d
accepted C++ binary file I/O to/from containers (other than char *) using STL algorithms
1d
revised C++ binary file I/O to/from containers (other than char *) using STL algorithms
added 1 characters in body
1d
answered C++ binary file I/O to/from containers (other than char *) using STL algorithms
1d
accepted Pattern name for create in constructor, delete in destructor (C++)
1d
comment Assigning a “const char*” to std::string is allowed, but assigning to std::wstring doesn’t compile. Why?
@Artyom: UTF-32 (UCS-4) is a fixed size format and does not have surrogate pairs thus size() will work as expected. UTF-16 has surrogate pairs (though UCS-2 does not at the code points aer just passed through).
2d
comment Avoid slicing of exception types (C++)
+1. I am with Neil here. If you think you have an exception that occurs more often than others and thus needs its own exception type (the you probably have an error situation not an exception). Otherwise 1 exception per functional unit (How you define functional unit is left vague but bigger rather than smaller).
2d
comment How to implement class composition in C++?
Excluding smart pointers for simplicity is an Oxymoron. Not wanting to learn the STL is like saying not wanting to learn how to use C++ properly. The 'S' in 'Standard' it is part of the standard.
2d
comment Casting a pointer to a sub-class (C++)
wayyyy to many casts. What we really need is the class declaration.
2d
answered Appending an int to a wchar_t*? ..unresolved, lack of concrete example
Dec
4
comment Why is there a performance warning on cast pointer to bool?
I meant in compared to the if {} else {} block. This also removes the warning.
Dec
4
answered Why is there a performance warning on cast pointer to bool?
Dec
4
revised Pattern name for create in constructor, delete in destructor (C++)
added 213 characters in body
Dec
4
comment Cross-platform library for manipulating Windows paths?
@ Dr House (AKA Sam): For dev that have only used windows it is less obvious than you think.
Dec
4
comment Cross-platform library for manipulating Windows paths?
@Magnus: If the question was clear then pesumabley you would not need to point out it was clear :-) If running on Linux. How is a windows path useful. You can't use it to access a file and thus it is not really a path.
Dec
4
answered Cross-platform library for manipulating Windows paths?
Dec
4
revised Pattern name for create in constructor, delete in destructor (C++)
added 3 characters in body
Dec
4
comment Pattern name for create in constructor, delete in destructor (C++)
Because of the compiler generated copy constructor.
Dec
4
answered Pattern name for create in constructor, delete in destructor (C++)
Dec
4
comment Pattern name for create in constructor, delete in destructor (C++)
Bad class A. Copy constructor and Assignment operator are missing.
Dec
4
revised How do you call the copy constructor within a member function of a class?
added 269 characters in body
Dec
4
comment How do you call the copy constructor within a member function of a class?
Clone() is the Java way of handling things. It is not the standard way of doing things in C++
Dec
4
answered How do you call the copy constructor within a member function of a class?
Dec
3
comment C++ create a parser
Lex and Yacc have been superceeded by Flex and Bison.
Dec
3
revised c++, get phone number from txt file
added 491 characters in body; deleted 92 characters in body; added 112 characters in body
Dec
3
comment C++ SmartPointers leak on self assign?
You need to post the smart pointer and the code thatr causes it to leak. It is practically impossable to concieve of all the ways a smart pointer can be used and as such just looking at the smart pointer is not enough. If a collegue says it leaks ask for the code it is used in that causes the leak then debug from there.
Dec
3
comment Templates C++ error : could not deduce template argument
Why not pass the vector by reference rather than a pointer?
Dec
3
answered c++, get phone number from txt file
Dec
3
comment c++, get phone number from txt file
Thats likely to crash. You have not allocated any memory for phone_temp.
Dec
3
comment Templates C++ error : could not deduce template argument
If you do that the operator[] will not work as expected. You are de-referencing a vector[]*. This will give you the next vector not the next element in the vector.