33,429 reputation
53973
bio website
location Bangalore, India
age 23
visits member for 8 months
seen 7 hours ago
stats profile views 6,859

A Software Engineer Fresher started my IT career from Feb'12

I love to code and I'm quite into it. In my free time, I like to spend time on StackOverflow, where I posted first time on 18 Sep'12

My current work include programming in: -

And I'm still learning them.
Recently somehow I got interested in learning some new language, I don't know why, so I started with: -


7h
comment How many distinct values are inside an array
Just create a Set out of it, and get it's size. That's it.
7h
comment Difficulty with ArrayLists in Java
well, what trouble are you having?
2d
comment Should unchecked exceptions be caught and dealt with?
It's somewhat related to logical errors that might result in ill-functioning of your code. For e.g. you would not want your user to pass a negative number to a method that calculates the sqrt, in which case, you would add a test at the beginning, and if negative number is found, you would like to inform the user about this, possibly by throwing an exception saying the argument passed is illegal.
May
14
comment Friend Class or Friend member function - Forward declaration and Header inclusion
@psibar. I don't think we can do something like that. ScreenIndex is a type alias defined in WindowManager class. We can only forward declare a class or function (from what I've read till now).
May
14
comment Friend Class or Friend member function - Forward declaration and Header inclusion
@psibar. Yeah right. Thanks for pointing. Edited :)
May
14
revised Friend Class or Friend member function - Forward declaration and Header inclusion
added 3 characters in body
May
14
comment Friend Class or Friend member function - Forward declaration and Header inclusion
Yeah that's fine. But what I want to know is as ScreenCls stands as of now, the clear function declaration requires that WindowManager be included rather than forward declared right? In that case, there is a cyclic dependency. But, if we go with friend class WindowManager; instead of the current friend member function declaration, then forward declaration will be ok. Right?
May
14
asked Friend Class or Friend member function - Forward declaration and Header inclusion
May
14
accepted Classes from C++ Primer going into Cyclic Dependency
May
14
comment Classes from C++ Primer going into Cyclic Dependency
Ah! Done with Building. Had to remove forward declaration from WindowManager header, and include the class rather. And in .cpp file, had to just include the class. Need to understand the logic badly. Thanks :)
May
14
comment Classes from C++ Primer going into Cyclic Dependency
I added a forward declaration : class ScreenCls; before the WindowManager class in the WindowManager.h. Now it cannot find WindowManager in ScreenCls. :(
May
14
asked Classes from C++ Primer going into Cyclic Dependency
May
13
awarded  Nice Answer
May
10
awarded  Nice Answer
May
3
revised Sorting an ArrayList of strings with java collections
added 2 characters in body
Apr
22
comment 2D array how to avoid the same numbers
Do you have a range of numbers defined?
Apr
22
comment Search on a particular line using Regular Expression in Java
@NiteshGupta. Of course you can do, but again the question - Do you just want that 7th line back? If yes, then capture it in a group. That's it. I've edited my answer a little bit.
Apr
22
revised Search on a particular line using Regular Expression in Java
added 408 characters in body
Apr
22
comment Search on a particular line using Regular Expression in Java
@NiteshGupta. Just capture whatever you want to print in a group. What do you want to print anyways?
Apr
22
revised Search on a particular line using Regular Expression in Java
deleted 12 characters in body