Search Results
| Search type | Search syntax |
|---|---|
| Tags | [tag] |
| Exact | "words here" |
| Author | user:1234 user:me (yours) |
| Score | score:3 (3+) score:0 (none) |
| Answers | answers:3 (3+) answers:0 (none) isaccepted:yes hasaccepted:no inquestion:1234 |
| Views | views:250 |
| Code | code:"if (foo != bar)" |
| Sections | title:apples body:"apples oranges" |
| URL | url:"*.example.com" |
| Saves | in:saves |
| Status | closed:yes duplicate:no migrated:no wiki:no |
| Types | is:question is:answer |
| Exclude | -[tag] -apples |
| For more details on advanced search visit our help page | |
Results tagged with java
Search options not deleted user 150302
Java is a high-level, platform-independent, object-oriented programming language originally developed by Sun Microsystems. Java is currently owned by Oracle, which purchased Sun in 2010.
4 votes
What type of structure is this in java?
It's a anonymous class. setOnItemClickListener takes a instance of the type OnItemClickListener on the first line, a instance of the anonymous class is created, the () is the constructor call what f …
2 votes
Using inputstreams and outputstreams as method parameters and/or return types
Generally speaking, using output parameters is considered bad practice. After all, the return value is meant to be the result of the computation that the function performs. The parameters are supposed …