Thursday, April 18, 2024 02:00

Posts Tagged ‘methods implementation’

Methods and functions declaration

Sunday, April 9th, 2017

Methods and functions declarations is actually a three step process: declaration, implementation, call  of our method or function.

  • Declaration is the process of writing the method type, name and eventual parameters, so the program can successfully identify it.
  • Implementation of a method is writing the actual code that will be executed when the method is executed.
Read more

Follow the white rabbit