Term of the Moment

interoperability


Look Up Another Term


Redirected from: hard coding

Definition: hard coded


(1) A part of a program that has been declared as unchanging. For example, a constant is hard coded and remains the same throughout the execution of the program.

(2) Programming code that solves a problem but offers less flexibility for future changes. The logic in a hard-coded program is designed to solve a specific problem only; for example, values in the program are fixed and not user changeable. Hard coding may get the job done, but it can be thought of as "brute force" programming.

Easier and Faster
Very often, an application is hard coded first and generalized later. The reason is simple. It is always easier and faster to hard code a solution than to write a generalized routine that handles a variety of possibilities.

Hard Coding vs. Hand Coding
Hard coding and "hand coding" are not the same thing. Hard coding refers to writing a fixed solution. Hand coding means writing individual statements in a programming language rather than using a preprogrammed routine. See hardwired, hand coding, generalized program and data independence.

Fixed vs. Variable Example
In the following pseudocode example, it takes half as many lines to hard code bouncing a ball 10 times rather than a variable number of times. See pseudocode.

   Hard Coded (fixed number)

    start
  1    ballCount = 0

    loop
  2    bounce ball
  3    add 1 to ballCount
  4    if ballCount = 10
  5       stop
       else
  6    goto loop


   Generalized Code (variable number)

    start
  1    display "Enter Bounce Count"
  2    input to maxCount
  3    if maxCount not an integer
  4       display "Not a valid number."
  5       goto start
       else
  6       ballCount = 0

    loop
  7    if ballCount not = maxCount
  8       bounce ball
  9       add 1 to ballCount
 10       goto loop
 11    else
 12       stop