Difference between revisions of "Cpp Coding Standards/OBSOLETE"

From Apache OpenOffice Wiki
Jump to: navigation, search
m
Line 1: Line 1:
=== Obsolete Habits (OBSOLETE) ===
+
== Obsolete Habits (OBSOLETE) ==
 
''In the many years of developing OpenOffice.org and its antecessors some habits have been developed that once were needed, but now are obsolete. There are alternatives today to be preferred.''
 
''In the many years of developing OpenOffice.org and its antecessors some habits have been developed that once were needed, but now are obsolete. There are alternatives today to be preferred.''
  
Line 16: Line 16:
 
''Now:'' Use “try” and “catch”.<br>
 
''Now:'' Use “try” and “catch”.<br>
 
[[/NoMacro|-> Details]]
 
[[/NoMacro|-> Details]]
 
 
----
 
----
=== Related Rules ===
+
==== Related Rules ====
* [[../STL#Cont |STL:Cont]] -  Use the STL Containers
+
'''Use the STL Containers''' [[../STL#Cont|-> STL:Cont]]
  
 
----
 
----
 
[[Category:Coding Standards]]
 
[[Category:Coding Standards]]

Revision as of 09:26, 23 May 2007

Obsolete Habits (OBSOLETE)

In the many years of developing OpenOffice.org and its antecessors some habits have been developed that once were needed, but now are obsolete. There are alternatives today to be preferred.

Preferred Types (Types)

Previously: “solar” types where used and various string implementations. For lists and vectors self-made types were implemented, often by macros.
Now: Use sal-Types instead of “solar” types. Use rtl:O[U]String[Buffer] classes instead of any other string implementation. Use STL containers instead of DECLARE_LIST and other self-made containers.
-> Details

Prefer Allocation from the Stack (Stack)

Previously: Heap allocation was preferred to stack allocation in function bodies, because stack size was small.
Now: Don't fetch local data or objects from the heap, if they are not of user-defined size. Allocation from the stack is faster.
-> Details

No Old Macros (NoMacro)

Previously: TRY and CATCH where used.
Now: Use “try” and “catch”.
-> Details


Related Rules

Use the STL Containers -> STL:Cont


Personal tools