const char* s1 = "teststirg";
const char s2[] = "teststirg";
I want a method tell me that s1 is "char*" and s2 is "char[]",how to write the method?
|
|
Use templates:
This will evaluate at runtime.
If interested, you can use some advance techniques, which will tell you this as compile time. Edit:
Usage:
|
|||||||||||||||
|
|
If you have access to the original definition, then |
|||
|
|
|
In the above context ( that is in the same method where we have the declaration),
Your compiler wouldn't allow step 1,2,4 to pass, while step 3 would succeed. This clearly indicates the nature of the variables. Now, as regards the method (function call) to determine that, you will have to have the definition in the method signature anyways, so I dont see any purpose/utility/possiblity of this method.
You already have the definition in the signature.You need to bypass compiler, to get a use case for this. I apologise , If I haven't got your requirement correct. |
|||
|
|