16,018,650 members
Sign in
Sign in
Email
Password
Forgot your password?
Sign in with
home
articles
Browse Topics
>
Latest Articles
Top Articles
Posting/Update Guidelines
Article Help Forum
Submit an article or tip
Import GitHub Project
Import your Blog
quick answers
Q&A
Ask a Question
View Unanswered Questions
View All Questions
View C# questions
View C++ questions
View Visual Basic questions
View Javascript questions
View .NET questions
discussions
forums
CodeProject.AI Server
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work Issues
Design and Architecture
Artificial Intelligence
ASP.NET
JavaScript
Internet of Things
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
C#
Free Tools
Objective-C and Swift
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
Linux Programming
Python
.NET (Core and Framework)
Android
iOS
Mobile
WPF
Visual Basic
Web Development
Site Bugs / Suggestions
Spam and Abuse Watch
features
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
CodeProject Stuff
community
lounge
Who's Who
Most Valuable Professionals
The Lounge
The CodeProject Blog
Where I Am: Member Photos
The Insider News
The Weird & The Wonderful
help
?
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
About Us
Search within:
Articles
Quick Answers
Messages
Comments by Member 13798091 (Top 7 by date)
Member 13798091
3-Aug-24 9:28am
View
Deleted
fun main() {
UpperCaseWriter(FileWriter("log.txt")).use {
it.write(
"""
This is a test
another line
SOME UPPERCASE TEXT
""".trimIndent())
}
}
I think here, it.write(str) calls:
public void write(String str) throws IOException {
write(str, 0, str.length())}
//and this write(str, 0, str.length())
//calls my overriden fun write that is:
override fun write(str: String, off: Int, len: Int) {
super.write(str.uppercase(), off, len)
}
Member 13798091
31-Jul-24 7:01am
View
The problem is that when I delete uppercase() from this
super.write(str.uppercase(), off,
len)
It will not print the text uppercased?
And when I hit ctrl and click on write from this super.write(newbuf) it takes to me the write(str, off,
len) that is overriden bellow it?
Member 13798091
31-Jul-24 7:00am
View
The problem is that when I delete uppercase() from this
super.write(str.uppercase(), off,
len)
It will not print the text uppercased?
And when I hit ctrl and click on write from this super.write(newbuf) it takes to me the write(str, off,
len) that is overriden bellow it?
Member 13798091
31-Jul-24 6:59am
View
The problem is that when I delete uppercase() from this
super.write(str.uppercase(), off,
len)
It will not print the text uppercased?
And when I hit ctrl and click on write from this super.write(newbuf) it takes to me the write(str, off,
len) that is overriden bellow it?
Member 13798091
2-Jan-20 8:23am
View
I have trid
val intentNew = getIntent()
But the same
what should I do?
given that I a mfollowing a tutor
Member 13798091
2-Jan-20 8:21am
View
Could you please give me an example.
What should I do?
I have tried almost anything, given that I am following a tutor.
Member 13798091
30-Apr-18 10:20am
View
yeah, i got it thank you very much.
that was what i really needed.
Show More