Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to call this method to concat two arrays using Google Collections

public static <T> T[] concat(T[] first,
                             T[] second,
                             Class<T> type)

It's returning empty results. I am using

ObjectArrays.concat(array1, array2, Blah.class)

which is the only thing that compiles.

array1 and array2 are of type Blah[].

What's the right syntax?

Bonus question: do other collections libraries have documentation with examples?

Edit: Problem was my bone-headed code.

public void register(ButtonPair[] pairs) {
    pairs = ObjectArrays.concat(this.pairs, pairs, ButtonPair.class);
}

the right side of the thing is okay, but the left side is not assigning to this.pairs due to the ambiguity. Sorry! And hats off to Google Collections!

share|improve this question
2  
Try Apache common collections, much better for your purpose check ArrayUtils – Teja Kantamneni Feb 9 '10 at 20:24
1  
Any chance that you post an SSCCE (sscce.org) to demonstrate the failure? – BalusC Feb 9 '10 at 20:26
Thanks @Teja Kantamneni, I will. – Yar Feb 9 '10 at 20:26
@BalusC, I just got pulled away so I cannot. However, if the syntax looks right to you, it may in fact be right :) – Yar Feb 9 '10 at 20:28
@BalusC, see the question for my update of why posting an SSCCE would've resulted in me seeing my error :) Thanks – Yar Feb 9 '10 at 20:42
show 2 more comments

4 Answers

up vote 3 down vote accepted

The following worked for me:


String[] arr1 = { "abc", "def" };
String[] arr2 = { "ghi", "jkl" };
String[] result = ObjectArrays.concat(arr1, arr2, String.class);

How are you getting the result from concat()?

share|improve this answer
Yes, I am getting the result of the concat, but I must be messing something else up. I'll check my code. Thanks for that. – Yar Feb 9 '10 at 20:31
Marking this as best answer, because in fact I was, in a sense, not catching the return result. But I thought I was :) See the question – Yar Feb 9 '10 at 20:58

For some example usage of the Google Collections classes, check out the unit tests.

For example:

String[] result = ObjectArrays.concat(
    new String[] { "a", "b" }, new String[] { "c", "d" }, String.class);
assertEquals(String[].class, result.getClass());
assertContentsInOrder(Arrays.asList(result), "a", "b", "c", "d");

So, what the Class<T> notation means is that it needs you to specify what class the objects in the other two argument arrays belong to.

share|improve this answer
cool, then it must be me. I'll recheck my code – Yar Feb 9 '10 at 20:31

Your syntax looks totally correct. I think the problem must be elsewhere. Are you 100% certain about the input values? Here is a test case:

import com.google.common.collect.ObjectArrays;

public class ObjectArrayTest
{
    public static void main(String[] args)
    {
        String[] first = new String[] { "Fire", "Earth" };
        String[] second = new String[] { "Water", "Air" };

        String[] result = ObjectArrays.concat(first, second, String.class);

        for (String s : result)
        {
            System.out.println (s);
        }
    }
}
share|improve this answer
Cool, thanks, I see it must be elsewhere in my code. I thought I had bracketed the problem but I did not. Okay, last +1 for this answer :) – Yar Feb 9 '10 at 20:35

Isn't this because you are not assigning the result to the instance variable but to the method variable.

That is this:

public void register(ButtonPair[] pairs) {
    pairs = ObjectArrays.concat(this.pairs, pairs, ButtonPair.class);
    }

should be

public void register(ButtonPair[] pairs) {
    this.pairs = ObjectArrays.concat(this.pairs, pairs, ButtonPair.class);
    }

Incidentally, this is why at our shop we have have a different naming convention for method parameters and variables than that for instance variables (though not the awful prefixing/suffixing of instance variables like _someInstanceVar).

share|improve this answer
Yes, as I said in the question, that is the problem. What's the naming convention you use? – Yar Feb 10 '10 at 10:48
We use full words for instance/class variables and 3 letter abbreviations for method parms and variables - it works really well for the most part, though occasionally a 3 letter word is what you want for the parm. – Software Monkey Feb 10 '10 at 16:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.