style tag

23 questions


4 answers
253 views
0
How do you say Repetition Code in Japanese?

Write here because you may not know software engineering or answer in general terms on language sites.How do you say Repetition Code in Japanese?Repetition Code is a bad way to write software where th...

1 years ago

1 answers
104 views
0
Is it possible to apply multiple styles in a text view?

For example, tv.setText(line1 + \n + line2 + \n + word1 + \t + word2 + \t + word3);If there is a sentence like this, I would like to apply different styles for each line1, line2, word1, word2The sauce...

1 years ago

1 answers
77 views
0
To return one or more values in a function

What kind of method do you use to return multiple values in a function?The method I'm using is as follows.def f(x): y0 = x + 1 y1 = x * 3 y2 = y0 ** y3 return (y0,y1,y2)When there are more elements, i...


1 answers
140 views
0
Can I turn the array over with a function factor without a pointer?

int a[5][5];int* a[5];int** a;When you get an array as a factor, you have to choose one of those three and unify itIs there any way I can turn it over without using a pointer?

1 years ago

1 answers
81 views
0
Which is better, using multiple overlapping functions or using them one by one?

id = camelCase(toParse( upper(id) ));Is this better?id = upper(id);id = toParse(id);id = camelCase(id);Is this better?I only did three right now. On the premise that the overlap can increase further a...


1 answers
86 views
0
Web loading speed when HTML source