|
Encoder Instance
Our team is programming in Java, and we can't find out how to create a proper instance of an encoder. We looked at the constructor method for Encoder, and it needs a boolean. However, when we put 'true' or 'false' in, we kept producing an error. The code looks sort of like this:
rfEncoder = new Encoder(true, 5);
since this isn't working, what should we do instead?
|