Questions tagged [out-parameters]
The out-parameters tag has no summary.
                6 questions
            
            
            
                4
            
            votes
        
        
            
                2
            
            answers
        
        
            
                3k
            
            views
        
        
            
            
            
        Should a method modifying object passed as a parameter return the modified object? [duplicate]
                    I have some incoming request - it's an instance of class generated from api specification - POJO with public getters/setters.
I would like to normalize some values. For example dimensions (to use ...
                
            
       
        
            
                35
            
            votes
        
        
            
                9
            
            answers
        
        
            
                51k
            
            views
        
        
            
            
            
        Is there a better way to use C# dictionaries than TryGetValue?
                    I find myself often looking up questions online, and many solutions include dictionaries. However, whenever I try to implement them, I get this horrible reek in my code. For example every time I want ...
                
            
       
        
            
                15
            
            votes
        
        
            
                3
            
            answers
        
        
            
                10k
            
            views
        
        
            
            
            
        non-optional pointers vs. non-const references in C++
                    In Other C++ Features, Reference Arguments of the Google C++ Style Guide, I read that non-const references must not be used.
  All parameters passed by reference must be labeled const.
It is clear ...
                
            
       
        
            
                0
            
            votes
        
        
            
                5
            
            answers
        
        
            
                4k
            
            views
        
        
            
            
            
        Named output parameters vs return values
                    Which code is better:
// C++
void handle_message(...some input parameters..., bool& wasHandled)
void set_some_value(int newValue, int* oldValue = nullptr) 
// C#
void handle_message(...some ...
                
            
       
        
            
                8
            
            votes
        
        
            
                4
            
            answers
        
        
            
                12k
            
            views
        
        
            
            
            
        Function that modifies an argument, should I return the modified object?
                    We have a function that modifies a JS object, by adding some custom properties to it. The function doesn't return antyhing
addTransaction: function (obj) {
     obj.transactionId = this....
                
            
       
        
            
                6
            
            votes
        
        
            
                4
            
            answers
        
        
            
                22k
            
            views
        
        
            
            
            
        Is using "out" or "ref" parameters in Java methods to return extra values bad?
                    I happened to create a mutable class like this:
class Mutable<T> {
    private T value;
    public Mutable() { this.value = null; }
    public Mutable(T value) { this.value = value; }
    T get(...