Posts by Rodrigo Santiago • 1,822 points
61 posts
-
2
votes3
answers2857
viewsA: What characterizes a programming language?
From the common source (Wikipedia) has a very simple answer: A programming language is a standardized method for communicating instructions to a computer. That is, if somehow you communicate with…
-
18
votes1
answer289
viewsQ: Build C++ using Gradle
The Gradle and a great ally in java and android development. I was looking at the site and realized that it can also manage projects in c++. How can I use it to compile a super simple project (hello…
-
22
votes2
answers440
viewsQ: What does # mean in the name of some languages?
This may be the simplest possible question, but what does # (Sharp) mean in the C# and F language names#?
-
0
votes1
answer41
viewsA: How to pause a Notification progress?
I’ll give you an idea, in the thread-creating object ,declare a Boolean instance variable 'pause', and in Thread: new Thread( new Runnable() { @Override public void run() { int incr; // Do the…
-
4
votes1
answer223
viewsQ: Configure to Eclipse show parameters name on auto-complete
Sometimes the eclipse, it shows in auto-complete the names of the variables in an easier way to understand. For example, if on this line you press Ctrl+Space : BufferedImage img = new…
-
1
votes0
answers87
viewsQ: Javafx takes time to open the first time
I have a relatively complex GUI class that I inherit from Tab. When I create an instance of it, it builds the menus and GUI in direct code, without fxml. It uses icons in external png, but the…
-
3
votes1
answer45
viewsQ: Is there an Aot compiler for Java?
I’ve seen the Excelsior Jet but it is private and paid. If there is any free, how do I use it in windows? (I say this because there is so much for linux)…
-
5
votes3
answers524
viewsA: What is Front-end and Back-end?
Very simply : Front-end is what the user will view, usually done in HTML and Javascript. Back-end is what will be processed from behind on the server. The user has no access , the back end is also…
-
2
votes1
answer137
viewsQ: Is there a free algorithm to check syntax C#?
I’m creating a small text editor that has C#code. There is some way inside the program itself, independently, to check if the syntax is correct? Note: I am not using C# to do the text editor. I am…
-
21
votes1
answer1790
viewsQ: Why is Language D rarely used?
I’ve done a lot of research on the language, I’ve used compilers, Ides (Eclipse, Mono, Codeblocks). I thought she was "too good to be true". It has the whole structure of the Java/C# syntax (which…
-
6
votes1
answer1184
viewsQ: Garbage Collector for C++
I clearly understand what a Garbage Collector is and what it is for. It is very well known in Java. Is there a C++ library that implements GC or fixes memory lLeaks? I’ve searched the internet but…