Skip to main content
Redhat Developers  Logo
  • Products

    Platforms

    • Red Hat Enterprise Linux
      Red Hat Enterprise Linux Icon
    • Red Hat AI
      Red Hat AI
    • Red Hat OpenShift
      Openshift icon
    • Red Hat Ansible Automation Platform
      Ansible icon
    • View All Red Hat Products

    Featured

    • Red Hat build of OpenJDK
    • Red Hat Developer Hub
    • Red Hat JBoss Enterprise Application Platform
    • Red Hat OpenShift Dev Spaces
    • Red Hat OpenShift Local
    • Red Hat Developer Sandbox

      Try Red Hat products and technologies without setup or configuration fees for 30 days with this shared Openshift and Kubernetes cluster.
    • Try at no cost
  • Technologies

    Featured

    • AI/ML
      AI/ML Icon
    • Linux
      Linux Icon
    • Kubernetes
      Cloud icon
    • Automation
      Automation Icon showing arrows moving in a circle around a gear
    • View All Technologies
    • Programming Languages & Frameworks

      • Java
      • Python
      • JavaScript
    • System Design & Architecture

      • Red Hat architecture and design patterns
      • Microservices
      • Event-Driven Architecture
      • Databases
    • Developer Productivity

      • Developer productivity
      • Developer Tools
      • GitOps
    • Automated Data Processing

      • AI/ML
      • Data Science
      • Apache Kafka on Kubernetes
    • Platform Engineering

      • DevOps
      • DevSecOps
      • Ansible automation for applications and services
    • Secure Development & Architectures

      • Security
      • Secure coding
  • Learn

    Featured

    • Kubernetes & Cloud Native
      Openshift icon
    • Linux
      Rhel icon
    • Automation
      Ansible cloud icon
    • AI/ML
      AI/ML Icon
    • View All Learning Resources

    E-Books

    • GitOps Cookbook
    • Podman in Action
    • Kubernetes Operators
    • The Path to GitOps
    • View All E-books

    Cheat Sheets

    • Linux Commands
    • Bash Commands
    • Git
    • systemd Commands
    • View All Cheat Sheets

    Documentation

    • Product Documentation
    • API Catalog
    • Legacy Documentation
  • Developer Sandbox

    Developer Sandbox

    • Access Red Hat’s products and technologies without setup or configuration, and start developing quicker than ever before with our new, no-cost sandbox environments.
    • Explore Developer Sandbox

    Featured Developer Sandbox activities

    • Get started with your Developer Sandbox
    • OpenShift virtualization and application modernization using the Developer Sandbox
    • Explore all Developer Sandbox activities

    Ready to start developing apps?

    • Try at no cost
  • Blog
  • Events
  • Videos

The Eclipse Developer's guide to Clean Code (part 2)

February 9, 2015
Leo Ufimtsev
Related topics:
Developer ToolsLinux
Related products:
Developer ToolsRed Hat Enterprise Linux

Share:

    Last time we discussed de-duplicating some code. Today let us look into the effectiveness of refactored code, Java 8 support and moving/renaming code.

    But hold on, aren't method calls expensive?

    I took a course on compilers in University and did some research on the matter.
    In 1996 Java in-lining might have made sense. But nowadays the overhead that methods generate is relatively negligible, also the JVM is quite smart in optimizing bytecode by in-lining methods that make sense to in-line. Usually the benefits of clarity out-weigh the small constant-time overhead of the method call.

    There is an excellent blog post on the matter:

    "..method overheads are close to being non-existent. Just 205 ns difference between having 1023 additional method invocations in your source code. Remember, those were nanoseconds (10^-9 s) over there that we used for measurement. So thanks to JIT we can safely neglect most of the overhead introduced by method invocations." - How expensive is a method call

    There is also more official documentation from Oracle.

    Also interesting:
    - Blog: Do you get Just-in-time compilation?
    - Stack overflow: java how expensive is a method call

    "Avoiding premature optimization. The best practice is to write readable and well-designed code, and then optimize for the performance hotspots in your application. "

     

    Java 8 and Lambda Functions can be extracted also

    With the newer Eclipse versions, you can also extract inlined lambda functions that are getting too long.

    //Before:
    control.addListener (SWT.MouseDown, event -> mainGUI.startPomodoro (w.taskTree, w.shell));
    
    //After
    
    control.addListener (SWT.MouseDown, extracted (w));
    ...
    }
     private Listener extracted (UIWidgets w) {
     return event -> mainGUI.startPomodoro (w.taskTree, w.shell);
     }

    Move those methods

    Sometimes you want to move code around. E.g after extracting helper functions, they might not have the order that you want. Or sometimes when you open a class, you might notice that a public function is not on top of the class (which they should be).

    Instead of cut/pasting chunks of code, you can simply drag methods in the method outline and the code will migrate as well:

    EclipseMoveMethod

     

    (As a small note, A-Z ordering needs to be disabled for this to work)

    Give variables and methods meaningful names and continue to rename them later.

    Ambiguity

    If you come across a variable or method that has an ambiguous name, go ahead and rename it.

    For example, I'm currently working on a Drag-and-Drop class. The Drag-Source has the following methods, do any look ambiguous?

    drag(..)
    dragDataDelete(..)
    dragEnd(..)
    dragGetData(..)

    After careful inspection, dragDataDelete() / dragEnd() / dragGetData()  were methods that were called when an OS event occurred. However, 'drag()' was a method that was called manually from other code, which force-starts a drag operation. This is easily confused with the missing 'dragBegin()'  handler that is triggered by an OS event.
    Also in order to understand what 'drag()' does I have to read all the other methods and compare them, i.e it is not standalone.

    If you see this, follow the clean-code rule "Leave the playground cleaner than you left it". Rename it to something more meaning full such as: dragManualBegin(..). Renaming variables and methods is simple:

    • Quick rename:
      Select method (or variable/class/file) and press Alt+Shift+r, type the new name of the variable and press enter.
      drag
      All references to this method/variable/file are automatically updated:
      drag renamed in other places
    • Rename with preview:
      Sometimes you may want to see all the places that are affected by renaming. Simply press Alt+Shift+r twice to get a preview plane:
      drag rename preview

    Rename after time

    One should really spent some time deciding on how to name a variable. The name should describe the one thing that a function does.
    However, the content of the function will often change over time, and as such you should rename the variable/method accordingly.
    For example the 'drag()' function above was probably the first to have been written, then the others were probably added. After they were added the 'drag()' method should really have been renamed to reflect it's specialization.

    Rename works across classes

    The rename feature works across your entire project. So if you happen to be in need of renaming a class, go ahead.
    This is usually useful for when you're writing new code as oppose to maintaining older code =)

    Eclipse has a lot more refactoring features, but those are the once that I personally use the most.

    And if you haven't read the Clean Code book yet, it's highly recommended.

    Last updated: February 26, 2024

    Recent Posts

    • Run Qwen3-Next on vLLM with Red Hat AI: A step-by-step guide

    • How to implement observability with Python and Llama Stack

    • Deploy a lightweight AI model with AI Inference Server containerization

    • vLLM Semantic Router: Improving efficiency in AI reasoning

    • Declaratively assigning DNS records to virtual machines

    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Products

    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform

    Build

    • Developer Sandbox
    • Developer Tools
    • Interactive Tutorials
    • API Catalog

    Quicklinks

    • Learning Resources
    • E-books
    • Cheat Sheets
    • Blog
    • Events
    • Newsletter

    Communicate

    • About us
    • Contact sales
    • Find a partner
    • Report a website issue
    • Site Status Dashboard
    • Report a security problem

    RED HAT DEVELOPER

    Build here. Go anywhere.

    We serve the builders. The problem solvers who create careers with code.

    Join us if you’re a developer, software engineer, web designer, front-end designer, UX designer, computer scientist, architect, tester, product manager, project manager or team lead.

    Sign me up

    Red Hat legal and privacy links

    • About Red Hat
    • Jobs
    • Events
    • Locations
    • Contact Red Hat
    • Red Hat Blog
    • Inclusion at Red Hat
    • Cool Stuff Store
    • Red Hat Summit
    © 2025 Red Hat

    Red Hat legal and privacy links

    • Privacy statement
    • Terms of use
    • All policies and guidelines
    • Digital accessibility

    Report a website issue