terminology tag

6 questions


1 answers
94 views
0
What does void mean in C-affiliated languages?

What does void mean in C-affiliated languages?Void is used a lot like this, but I wonder what void means.

1 years ago

1 answers
91 views
0
Java pass by reference

What is the difference between the two codes below?Code A:Foo myFoo;myFoo = createFoo();CreateFoo method public Foo createFoo(){ Foo foo = new Foo(); return foo;}Code B:Foo myFoo;createFoo(myFoo);publ...


1 answers
73 views
0
When calling a method in Java, is the parameter call by reference or call by value?

I thought it was a call-by-reference, but it's called a call-by-value on the Internet. Why?


1 answers
55 views
0
What's the difference between declaring and defining?

What's the difference between declaring and defining?Is it just the difference between having {} and not having it?

1 years ago

1 answers
100 views
0
Python terminology questions

ConditionsThe Boolean expressions you’ve seen so far could all be considered conditions, which are the same thing as expressions; condition is just a more specific name in the context of flow control ...

1 years ago

1 answers
78 views
0
Which is the larger concept of the test case/unit/suit?

After searching here and there, I think the test case is definitely the smallest unit of test code.It is also found in many documents that test suit and test unit are units that bind case to some exte...


© 2024 OneMinuteCode. All rights reserved.