Is anyone able to explain or evaluate the suitability of a procedural programming language for graphical applications, against object orientated programming for instance. What are the advantages and disadvantages of both?
The suitability of a procedural programming language for graphical applications
6.4k Views Asked by Graham Warrender At
1
There are 1 best solutions below
Related Questions in OOP
- Access objects variable & method by name
- Why does compiler recognize while(true) at compile time but not if(true)
- Pass variables to extended class
- Cast a superclass type to a subclass type?
- Understanding difference in Swift properties for structs and classes in assignment
- Does exist any way to force child class to have at least one field with a specified attribute?
- Symfony : is it better to use a trait or an intermediary class to complete Controller one?
- (Java) What kind of argument is this? With a
- C++ Implementing a Queue of cars in OOP
- Inheritance in openERP (odoo)
- missing 1 required positional argument: 'key'
- how can Object class in ruby be an instance of it's subclass, class "Class"
- How to force others to obey a specific layout for a child class?
- Class variables in OOP
- define_method in a class method
Related Questions in WINDOW
- Dismissing the dialog by outside touch event is not working
- Java FrameDemo Error: Could not find or load main class
- C# - Allow only specific windows on top of application?
- javascript click button after be shure that page has completely loaded
- Making a Simple RPG- Creating a new JFrame
- How to give a child window bounds to not go outside the MainWindow in WPF
- How do I scale the graphics of a game?
- WPF maximize main window with center for application
- Creating a folder and registry editing script as an executable
- creating a pop-up(or is it a pop-over?) window for a webpage
- Wicket Modal Window, any way to close it if i click outside of the modal window?
- How to detect when a specific window is closed in java
- how to fit content in browse height
- how do you make a protected window in applescript?
- Window is closing immediately after I run program in PyQt 4 (anaconda) [PyCharm 4.5]
Related Questions in CONSOLE-APPLICATION
- How to automatically click a dialog box opened from console application
- how to fetch data from Func using generic list and linq
- Problems with UTF8 text in XE7 ReadLn command
- Missing Data after insert into my end sql table using Sql Bulk Copy
- AvailableVirtualMemory on IIS and Console application
- C# Console App Exit Code with Task Scheduler
- How to handle multiple consoles in single application?
- How to run C# console app using powershell
- How to handle intermittent errors in Console output to network file
- Multiple Consoles in a Single Console Application
- .net crystal report export to stream from within sql server
- Microsoft Excel cannot access the file 'C:\0BBAC500'
- Redirected batch file process output not running
- Font is right. Why can't I get this unicode character to display in this C# console app?
- Delphi XE8: problems running an external console application, waiting for its results and capturing its results
Related Questions in PROCEDURAL-PROGRAMMING
- Procedurally-driven "font"?
- Testing non OOP PHP
- Is it good or bad practice to make stateless methods static?
- Procedural Programming Loops
- Best practices for writing / debugging complex PL/pgSQL queries
- In programming, when does it make sense to have 2 references to the same object (name ambiguity)
- What scope should my data objects have in VBA
- procedural code, vs oopy code and performance
- Is this considered as procedural programming (or anemic pattern)?
- API -- CFC vs. cfinclude
- Accessing variable from outside class definition?
- Why is my Cellular Automata implementation broken?
- PHP OO Performance when generating thousands of an object type
- advantages of stateful programming?
- Is it better practice to have 2 functions, or 1 complex function?
Related Questions in GRAPHICAL-PROGRAMMING
- JMonkeyEngine crash on Intel video adapter
- OpenGL application rotate Camera
- How can I fix textures and show two objects correctly with PyOpenGL?
- Convolution on c++
- How to add a graphical filter to Linux (ubuntu) graphical output?
- Shaping a tic tac toe in python
- QpushButton QTableWidget but when i add Menu action to button menu don't display why?
- How to get RGB values based on illuminance (Lux) in Python?
- WebGL2 - Write to texture/buffer at arbitrary position - OpenGL imageStore equivalent
- DirectX - CreateDeviceAndSwapChain returns E_INVALIDARG
- Create from scratch, or build up on Scratch?
- The suitability of a procedural programming language for graphical applications
- How to fill a shape with an ImageIcon in Java swing?
- Correlation Matrix with over 100 variables
- how to use overridden methods defined in a class, in another class?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
It is possible to use either since you will probably be using some framework to design the GUI.
For example, if you are considering C then you will probably use GTK as framework. But you can still use the C bindings for other frameworks such as WxWidgets (written in C++).
But: Procedural Programming isn't really strong because a GUI isn't a procedure.
A procedural environment relies on location in the program (which usually translates to time) to distinguish between different kinds of interactions. A GUI environment relies on location on the screen to distinguish between different kinds of interactions.
So, in a procedural environment you either smush everything together, so you have a place in the program which does everything, or you have a fake GUI, only some parts of the screen will work at any specific point in time.
That said, I should point out that it's not impossible to write a decent GUI from a procedural environment -- it's just a bit tricky.
And then there's the other way of looking at it: a GUI is like, chocolate, with lots of caramel, and a procedure is, like, all this paperwork. They just don't mix all that well.