Last active
November 11, 2018 12:37
-
-
Save ozcanzaferayan/fdeae7d02388ab9004e839bd940011c8 to your computer and use it in GitHub Desktop.
Kotlin Nedir: Java'da Appendable interface'indeki append metodu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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