Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
5answers
276 views

Exception Safety- When, How, Why?

I'm just a fledgling programmer that at least tries to program more than the best-case scenario. I've been reading Herb Sutter's "Exceptional C++" and went through the exception-safety chapters thrice ...
7
votes
2answers
213 views

Can a stack have an exception safe method for returning and removing the top element with move semantics?

In an answer to a question about std::stack::pop() I claimed that the reason pop does not return the value is for exception safety reason (what happens if the copy constructor throws). @Konrad ...
6
votes
4answers
775 views

Is it safe to push_back 'dynamically allocated object' to vector?

Whenever I need to add dynamically allocated object into a vector I've been doing that the following way: class Foo { ... }; vector<Foo*> v; v.push_back(new Foo); // do stuff with Foo in v ...
4
votes
3answers
130 views

Is it OK to have a throwing swap member-implementation?

The general guideline when writing classes (using the copy-and-swap idiom) is to provide a non throwing swap member function. (Effective C++, 3rd edition, Item 25 and other resources) However, what ...
4
votes
4answers
410 views

Is this a fine std::auto_ptr<> use case?

Please suppose I have a function that accepts a pointer as a parameter. This function can throw an exception, as it uses std::vector<>::push_back() to manage the lifecycle of this pointer. If I ...
3
votes
6answers
90 views

Java exception safety - how do I know details?

Is there a way to get some details regarding exception safety aspects of Java's standard classes? Mainly working with C++ and C#, I'm confused with Java exception specifications, so I need to ...
2
votes
2answers
294 views

safe std::tr1::shared_ptr usage

Is this approach unsafe? #include <tr1/memory> Foo * createFoo() { return new Foo(5); } int main() { std::tr1::shared_ptr<Foo> bar(create()); return 0; } Or would it be ...
1
vote
2answers
175 views

Why does `myvector.push_back(autoPtr.release())` provide the strong exception safety guarantee?

EDIT: I should've mentioned, I was looking at the documentation for Boost's ptr_sequence_adapter and it claims that their adapter for template< class U > void push_back( ::std::auto_ptr<U> ...
1
vote
5answers
158 views

How do I describe a method that has no side effects if an exception is thrown during execution?

I just can't remember the terminology used for this and other related properties. EDIT - Maybe such a concept doesn't exist but I remember reading something in Effective C++ (or More Effective C++) ...
0
votes
6answers
84 views

Is synchronized keyword exception-safe?

I am wondering if synchronized is exception-safe? Say, an uncaught exception happens within the synchronized block, will the lock be released?
0
votes
2answers
83 views

Exception Safety example guarantee correct?

I discuss the Exception Safety Guaratees and devised an example that I think provides the Strong Guarantee: template<typename E, typename LT> void strongSort(vector<E*> &data, LT lt) ...
0
votes
7answers
151 views

Is Try/Finally actually exception-safe?

Let's say you have a piece of code like: resource = allocateResource(); try { /* dangerous code here */ } finally { free(resource); } I'm not referring to any specific language here, but I guess ...
0
votes
2answers
285 views

Exception safety/handling with .Net HtmlTextWriter?

I am using a .Net HtmlTextWriter to generate HTML. try { htw.RenderBeginTag( HtmlTextWriterTag.Span ); htw.Write(myObject.GenerateHtml()); htw.RenderEndTag( ); } catch (Exception e) { ...