From f9347e1e9d79aee9cde0802fe178d72c8f87926c Mon Sep 17 00:00:00 2001
From: Liam Miller-Cushon
A single blank line appears:
+A single blank line always appears:
Multiple consecutive blank lines are permitted, but never required (or encouraged).
+A single blank line may also appear anywhere it improves readability, for example between +statements to organize the code into logical subsections. A blank line before the first member or +initializer, or after the last member or initializer of the class, is neither encouraged nor +discouraged. + +
Multiple consecutive blank lines are permitted, but never required (or encouraged).
new int[] { 5, 6 }
are both valid
+
+ []
or
+ ...
.This rule is never interpreted as requiring or forbidding additional space at the start or +end of a line; it addresses only interior space.
3000000000l
.
underscores. Thus each valid identifier name is matched by the regular expression
\w+
.
-In Google Style special prefixes or
-suffixes, like those seen in the examples name_
,
-mName
, s_name
and
-kName
, are not used.
In Google Style, special prefixes or suffixes are not used. For example, these
+names are not Google Style: name_
, mName
,
+s_name
and kName
.