Posts by SSCat • 173 points
5 posts
-
1
votes0
answers27
viewsQ: Is there a difference between a Message Queue and a Task Schedule?
I wish to make a system where the user can put an action to be done at some point. for example: make X on Thursday at 15 o'clock and I know what I’m doing is a Task Schedule, but along the way I…
-
1
votes3
answers93
viewsA: Alignment of photons
An easy way to do this is with the flex, flex manipulates the elements inside an element, so if you can add the display: flex to his label and tell him to put a space between his elements, like…
-
7
votes1
answer1877
viewsQ: What is using namespace?
Since the beginning of my C++ learning I have been told to use the namespace std, not to spend all the time using the std::cout. But after studying more about language, I learned that :: is a target…
-
2
votes3
answers209
viewsQ: Polymorphically manipulating subsclasses
How Superclass Manipulation of Subclasses Works? In this code, the array of one class, prints the values of other classes. zoo java. public class zoo { public static void main(String[] args) { Vaca…
-
3
votes1
answer1903
viewsQ: Break and Continue on Switch
What’s the difference of using the break and the continue within the switch?