Sciweavers

3708 search results - page 13 / 371
» Programming with C Exceptions
Sort
View
78 views 96 votes 15 years 6 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 245 votes 17 years 14 days ago
"This is an archive of style guides for C and C++ code."
153 views 97 votes 16 years 3 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 107 votes 15 years 8 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 108 votes 14 years 11 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 106 votes 15 years 7 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 105 votes 15 years 11 days 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 79 votes 15 years 2 months ago  JSC 2002»
107 views 101 votes 15 years 4 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 229 votes 16 years 3 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...