Creating a Bigram class that can hold two objects like Strings or other Bigrams (Java)
up vote
1
down vote
favorite
I'm trying to create a class that can hold two objects like Strings or other Bigrams for bigger n-grams but i'm not sure if I did it right. Below is the code for my class. Also, if I did write the class correctly how would I go about initializing it in another class?
public class Bigram<E1,E2> {
public E1 first;
public E2 second;
public Bigram(E1 first, E2 second) {
this.first = first;
this.second = second;
}
public E1 getFirst() {
return first;
}
public E2 getSecond() {
return second;
}
java
add a comment |
up vote
1
down vote
favorite
I'm trying to create a class that can hold two objects like Strings or other Bigrams for bigger n-grams but i'm not sure if I did it right. Below is the code for my class. Also, if I did write the class correctly how would I go about initializing it in another class?
public class Bigram<E1,E2> {
public E1 first;
public E2 second;
public Bigram(E1 first, E2 second) {
this.first = first;
this.second = second;
}
public E1 getFirst() {
return first;
}
public E2 getSecond() {
return second;
}
java
Bigram<String,Integer> b = new Bigram<>("hello",1);
using constructor
– Deadpool
Nov 11 at 0:26
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I'm trying to create a class that can hold two objects like Strings or other Bigrams for bigger n-grams but i'm not sure if I did it right. Below is the code for my class. Also, if I did write the class correctly how would I go about initializing it in another class?
public class Bigram<E1,E2> {
public E1 first;
public E2 second;
public Bigram(E1 first, E2 second) {
this.first = first;
this.second = second;
}
public E1 getFirst() {
return first;
}
public E2 getSecond() {
return second;
}
java
I'm trying to create a class that can hold two objects like Strings or other Bigrams for bigger n-grams but i'm not sure if I did it right. Below is the code for my class. Also, if I did write the class correctly how would I go about initializing it in another class?
public class Bigram<E1,E2> {
public E1 first;
public E2 second;
public Bigram(E1 first, E2 second) {
this.first = first;
this.second = second;
}
public E1 getFirst() {
return first;
}
public E2 getSecond() {
return second;
}
java
java
asked Nov 11 at 0:20
Tofferson
61
61
Bigram<String,Integer> b = new Bigram<>("hello",1);
using constructor
– Deadpool
Nov 11 at 0:26
add a comment |
Bigram<String,Integer> b = new Bigram<>("hello",1);
using constructor
– Deadpool
Nov 11 at 0:26
Bigram<String,Integer> b = new Bigram<>("hello",1);
using constructor– Deadpool
Nov 11 at 0:26
Bigram<String,Integer> b = new Bigram<>("hello",1);
using constructor– Deadpool
Nov 11 at 0:26
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53244716%2fcreating-a-bigram-class-that-can-hold-two-objects-like-strings-or-other-bigrams%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Bigram<String,Integer> b = new Bigram<>("hello",1);
using constructor– Deadpool
Nov 11 at 0:26