android - Java extends from class with <class name> -


can explain meaning of in below code snippet

public class noteadapter extends  arrayadapter<note>{  } 

in example note java class.

it means note adapter inherits arrayadapter generic class.the generic class arrayadapter accepts argument of type note.to understand more visit topic generics in java


Comments

Popular posts from this blog

php - Autoloader issue not returning Class -

C++ Program To Find Smallest and Largest Number In Array -

java - How to put two numbers separated by a space into two different arrays -