Posts by Isaque Fernando • 331 points
7 posts
-
2
votes1
answer102
viewsQ: Should I specify the type of return of a procedure in Python?
For some time I have studied and learned a little more about Python. I recently read an article about the description of python typing using the module typying. Since I learned about this feature I…
-
3
votes1
answer86
viewsQ: Is it correct to use a static method of an abstract class?
During a work assignment I came across the need to use an abstract class method to avoid code duplication. In this case, I came to a question whether it is correct to use a method of a class, which…
-
1
votes1
answer103
viewsQ: Method override of an interface
I’m having a question about the method override of an interface. I can override a method in a daughter class that inherits from the mother class the implementation of an interface and in that method…
-
3
votes1
answer254
viewsQ: What is the real use of the pass in this case?
I am working on the adaptation of a Jango project already created. During the analysis of the code I came across the following excerpt: def objects_delete_action(modeladmin, request, queryset): for…
-
3
votes2
answers205
viewsQ: Why do some functions that work with C strings start with *?
In one of our classes we were taught that when a function receives as a parameter an array it is actually receiving the memory position in which it is allocated so it is not necessary to return any…
-
17
votes2
answers1267
viewsQ: What is the difference between String[] args and String args[]?
What is the difference between the statements String[] args and String args[] in Java?
-
1
votes1
answer377
viewsQ: What is the correct way to run an application on a linux server using PHP?
Good afternoon, I need to run an application built natively for linux servers using php. I have a php script that runs an application on the linux server creating some files needed to continue the…