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 [[Pattern|patterns]],program oftenstructures includingand [[dummy code]]. Program skeletons with resemble to [[pseudo code]], but allows [[parsing]], [[compiler|compilation]] and testing of the code. Program skeletons are sometimes used to describe [[algorithm]]s.
 
'''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.
Skeleting programming is synonymous with the [[template method]] [[design pattern]]
 
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 may also be utilized as a template that reflects syntax and structures commonly used in a wide class of problems.
 
Skeleting programmingprograms is synonymousutilized within the [[template method]] [[design pattern]]. See that article for example skeleton programs.
 
==See also==