java 代码格式(转)

时间:2023-03-09 13:39:45
java 代码格式(转)

//转至博客:http://developer.51cto.com/art/201202/320317.ht

  1. /**
  2. * Java编码格式个人推荐,参考JDK源码和Hyperic HQ源码(原spring旗下著名开源软件,现vmware)。
  3. * @author lihzh(苦逼coder)
  4. * 本文地址:http://mushiqianmeng.blog.51cto.com/3970029/737120
  5. * */
  6. public class CodeRule {
  7. //声明变量,等号两边有空格。
  8. private static int i = 1;
  9. //方法声明,右括号和左大括号中间有空格。
  10. public static void main(String[] args) {
  11. //if语句,比较连接符(>)左右有空格,小括号和大括号中间有空格。
  12. //if 与 左括号中间有空格
  13. if (i > 0) {
  14. System.out.println(i);
  15. }
  16. //两个条件的连接(&&),左右有空格。
  17. if (i > 0 && i < 2) {
  18. System.out.println(i);
  19. }
  20. //if..else 语句两种格式
  21. //1.参考JDK,个人使用方式,else跟大括号,前后都有空格
  22. if (i > 0 && i < 2) {
  23. System.out.println(i);
  24. } else if (i > 2) {
  25. System.out.println(i + 1);
  26. } else {
  27. System.out.println(i);
  28. }
  29. //2.参考Hyperic HQ源码, else另起一行,后仍有空格
  30. if (i == 1) {
  31. System.out.println(i);
  32. }
  33. else {
  34. System.out.println(i);
  35. }
  36. //while语句,与if语句类型,while与括号中间有空格,括号内格式与if相同
  37. while (i > 0 && i < 2) {
  38. System.out.println(i);
  39. i++;
  40. }
  41. //for语句,两种格式
  42. //1.参考Hyperic HQ,个人使用方式。分号后带空格,每个子语句中,连接符左右都带空格。
  43. //for与括号中间带空格,大小括号中间带空格。
  44. for (int j = 0; j < 10; j++) {
  45. System.out.println(i);
  46. }
  47. //2.参考JDK,区别在于子语句中,连接符左右无空格。
  48. for (int j=0; j<10; j++) {
  49. System.out.println(i);
  50. }
  51. //+-*/,格式,四则运算符号前后有空格。
  52. //在JDK的有些代码里,在方法调用的参传递或在判断语句中存在的四则运算中,四则运算符号前后无空格。
  53. //为了不造成困扰和混淆,个人为均保留空格。
  54. int a = 1 + 2;
  55. int b = 1 - 2;
  56. int c = 1 * 2;
  57. int d = 1 / 2;
  58. //三元表达式格式,每个符号中间均有空格
  59. int j = i > 2 ? 1 : -1;
  60. //方法声明和调用,用逗号分隔的参数,逗号后有空格。
  61. sum(a, b);
  62. sum(c + d, j);
  63. }
  64. //方法声明,多个参数,逗号后有空格
  65. private static int sum(int i, int j) {
  66. return i + j;
  67. }
  68. }