Skip to content

Instantly share code, notes, and snippets.

@ozcanzaferayan
Last active November 11, 2018 12:37
Show Gist options
  • Save ozcanzaferayan/fdeae7d02388ab9004e839bd940011c8 to your computer and use it in GitHub Desktop.
Save ozcanzaferayan/fdeae7d02388ab9004e839bd940011c8 to your computer and use it in GitHub Desktop.
Kotlin Nedir: Java'da Appendable interface'indeki append metodu
public interface Appendable {
/*
* Appendable sınıfından türeyen ve append metodunu kullanan her sınıf
* checked exceptions'tan dolayı IOException fırlatmak veya handle etmek zorundadır.
*/
Appendable append(CharSequence csq) throws IOException;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment