Sciweavers

3708 search results - page 13 / 371
» Programming with C Exceptions
Sort
View
78 views 84 votes 15 years 5 months ago  ECOOPWEXCEPTION 2000»
Interface exceptions (explicitly declared exceptions that a method can propagate outside) are an inherent part of the interface describing the behaviour of a particular class of ob...
385 views 224 votes 16 years 11 months ago
"This is an archive of style guides for C and C++ code."
153 views 78 votes 16 years 1 months ago  SIGSOFT 2008»
Asynchronous exception propagation is a useful alternative form of communication among threads, especially if timely propagation is ensured. However, timely propagation is impossi...
101 views 96 votes 15 years 7 months ago  ECOOP 2007»
Most modern programming languages rely on exceptions for dealing with abnormal situations. Although exception handling was a significant improvement over other mechanisms like chec...
208 views 98 votes 14 years 10 months ago  ENTCS 2010»
In this paper, we present Aspic, an automatic polyhedral invariant generation tool for flowcharts programs. Aspic implements an improved Linear Relation Analysis on numeric counte...
143 views 94 votes 15 years 6 months ago  FMCO 2005»
Abstract. We describe the algorithmic and implementation ideas behind a tool, Orion, for finding common programming errors in C and C++ programs using static code analysis. We aim...
93 views 94 votes 14 years 10 months ago  ATVA 2010»
Exception handling is an important language feature for building more robust software programs. It is primarily concerned with capturing abnormal events, with the help of catch han...
51 views 71 votes 15 years 12 days ago  JSC 2002»
107 views 90 votes 15 years 2 months ago  APLAS 2008»
Abstract. Exceptions are an indispensable part of modern programming languages. They are, however, handled poorly, especially by higherorder languages such as Standard ML and Haske...
109 views 216 votes 16 years 1 months ago  ECOOP 2009»
The primary goal of exception mechanisms is to help ensure that when an operation fails, code that depends on the operation's successful completion is not executed (a property...