Skip to main content
added 317 characters in body
Source Link
Peter Lawrey
  • 535.1k
  • 83
  • 770
  • 1.2k

Eclipse uses the IBM compiler which has an option of creating classes which do not compile, replacing errors with

throw new Error(); 

IMHO, this is very bad practice and I have seen some very poor quality projects use this. The project didn't compile completely for weeks at a time.

Unlike fail fast strategies, which try to minimise the cost of bugs, discovering bugs as late as possible also maximises the cost of fixing them.

This strategy only works if you are writing prototype code quickly, i.e. code you know will never get into production. (It is hard to be sure this will be the case)

Eclipse uses the IBM compiler which has an option of creating classes which do not compile, replacing errors with

throw new Error(); 

IMHO, this is very bad practice and I have seen some very poor quality projects use this. The project didn't compile completely for weeks at a time.

Eclipse uses the IBM compiler which has an option of creating classes which do not compile, replacing errors with

throw new Error(); 

IMHO, this is very bad practice and I have seen some very poor quality projects use this. The project didn't compile completely for weeks at a time.

Unlike fail fast strategies, which try to minimise the cost of bugs, discovering bugs as late as possible also maximises the cost of fixing them.

This strategy only works if you are writing prototype code quickly, i.e. code you know will never get into production. (It is hard to be sure this will be the case)

added 1 characters in body
Source Link
Andrew Thompson
  • 169k
  • 42
  • 224
  • 441

ElcipseEclipse uses the IBM compiler which has an option of creating classes which do not compile, replacing errors with

throw new Error(); 

IMHO, this is very bad practice and I have seen some very poor quality projects use this. Th The project didn't compile completely for weeks at a time.

Elcipse uses the IBM compiler which has an option of creating classes which do not compile, replacing errors with

throw new Error(); 

IMHO, this is very bad practice and I have seen some very poor quality projects use this. Th project didn't compile completely for weeks at a time.

Eclipse uses the IBM compiler which has an option of creating classes which do not compile, replacing errors with

throw new Error(); 

IMHO, this is very bad practice and I have seen some very poor quality projects use this. The project didn't compile completely for weeks at a time.

Source Link
Peter Lawrey
  • 535.1k
  • 83
  • 770
  • 1.2k

Elcipse uses the IBM compiler which has an option of creating classes which do not compile, replacing errors with

throw new Error(); 

IMHO, this is very bad practice and I have seen some very poor quality projects use this. Th project didn't compile completely for weeks at a time.