Skeleton (computer programming): Difference between revisions

Content deleted Content added
No edit summary
No edit summary
Line 1:
'''Skeleton programming''' is a style of [[computer programming]] based on simple high-level program structures and [[dummy code]]. ItProgram facilitatesskeletons aresemble to [[top-downpseudo code]] design approach, wherebut aallows partially-functional[[parsing]], system with complete high-level structures is designed[[compiler|compilation]] and coded,testing and this system is then expanded to fulfillof the requirementscode. for the project to a successively higher level of detail.
 
Skeleton programming facilitates a [[top-down]] design approach, where a partially-functional system with complete high-level structures is designed and coded, and this system is then expanded to fulfill the requirements for the project to a successively higher level of detail.
Program skeletons resemble to [[pseudo code]], but allows [[parsing]], [[compiler|compilation]] and testing of the code. Program skeletons are sometimes used for high-level descriptions of [[algorithm]]s.
 
Program skeletons resemble to [[pseudo code]], but allows [[parsing]], [[compiler|compilation]] and testing of the code. Program skeletons are sometimes used for high-level descriptions of [[algorithm]]s.
 
A program skeleton may also be utilized as a template that reflects syntax and structures commonly used in a wide class of problems.
 
Skeleton programs are utilized in the [[template method design pattern]] used in [[object-oriented programming]]. See that article for examples of skeleton programs.
 
==See also==
*[[CORBA]]
*[[Dummy code]]
*[[Pseudo code]]