python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Flutter: create const color from hex string
I am using Firebase remote config to store my color values. This gives me the flexibilty to update colors without the need to update my app. Now I have written myself a helper function which returns t...
Jan
Votes: 0
Answers: 1
Can someone help me explain what the second line of the code means? This is in C++
My professor gave us this piece of code to study to better understand how class templates work in C++ but I'm confused on what the second line means. I put two asterisks (**) next to the statement I'd...
mila
Votes: 0
Answers: 2
Use class as type in other class constructor
i would like to use a class Point in an other class Rect.
class Point
{
int x, y;
public:
Point (int px, int py){
x = px;
y = py;
}
};
class Rect
{
Point top_left;...
Wendel
Votes: 0
Answers: 3
Implicit conversion from string type to type of class
Constructor that defines the implicit conversion from string type to type
of your class
Can someone explain in plain terms what implicit conversion from string type to type
of your class means?
user17243726
Votes: 0
Answers: 1