Tagged Questions
The optional-variables tag has no wiki summary.
6
votes
3answers
1k views
VB.NET := Operator
What does the following mean?
Class.Function(variable := 1 + 1)
What is this operator called, and what does it do?
5
votes
2answers
303 views
boost::optional<> in a union?
I have an optional POD struct that will be contained inside a union.
boost::optional<> holds its type by value, so I thought this could work:
union helper
{
int foo;
struct
{
...
3
votes
4answers
146 views
Best way to encapsulate “optional” fields within a struct generically in C++?
I have many concrete-structs and I want to designate fields as optional (present or not-present). Just wondering what ideas people have for achieving this. Here is an example struct (fields can be ...
2
votes
2answers
93 views
How to handle optional variables of an object in Java?
For my trading program, I have a Merchant class. A given Merchant object may or may not have a particular special quality or bundle of special qualities. For example, one Merchant object may have the ...
0
votes
4answers
122 views
Alternatives to optional (VB) parameters in C#?
I have been told that there is no such thing as optional parameters in C#.
But you can use overload functionality and input varibles with default values such as:
void Person(string name, int age)
...