rspec/rules/S818/java/rule.adoc

40 lines
777 B
Plaintext
Raw Normal View History

2020-06-30 12:50:59 +02:00
include::../description.adoc[]
== Noncompliant Code Example
----
long long1 = 1l; // Noncompliant
float float1 = 1.0f; // Noncompliant
double double1 = 1.0d; // Noncompliant
----
== Compliant Solution
----
long long1 = 1L;
float float1 = 1.0F;
double double1 = 1.0D;
----
== See
* https://wiki.sei.cmu.edu/confluence/x/cdYxBQ[CERT DCL16-C.] - Use "L," not "l," to indicate a long value
* https://wiki.sei.cmu.edu/confluence/x/7DZGBQ[CERT, DCL50-J.] - Use visually distinct identifiers
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::../message.adoc[]
include::parameters.adoc[]
'''
== Comments And Links
(visible only on this page)
include::../comments-and-links.adoc[]
endif::env-github,rspecator-view[]