константа

Code highlighting in Visual studio 2017 works intermittently for #defines written in the included files

I write a program in C++ using WinSock2. This library contains a number of constants and macros created with #define. While w ... ght. Even if all constants and macros are underlined in red, the project is built without problems and it works as it should.

Why do I need constant function parameters?

Why do we need constant function parameters? We need a real use case. That is, when it is worth writing, for example, so voi ... bout why you can not overload, I have a question "why are you needed". I didn't see the answer to my question in the answers.

What are literals? [duplicate]

This question has already been answered here: ... int c = a1; string cat = "Кот"; If "Literal" is a fixed value, then why is this terminology when there is a term "constant"?

Constant pool in Java

I have often heard about the so-called constant pool in the Java programming language. I know about the pool of String object ... fronted with this concept for the first time and I can't understand what it is about. Thank you all so much for your help! :)

Constant pointer and C++constant pointer

We have the following statement from the book by Stephen Prata-The C++ programming language (6th edition). Page 330: You ... pointer (*ptr). The actual question is, what is the author trying to convey and what did I misunderstand from his statement?

Local runtime constant

In C++, to define a local runtime constant, you can write this: const auto c = f(); Next, all attempts to change c will re ... ailable to ensure local time constancy C#execution? Is it really necessary to create a separate read-only interface for this?

Why are const and goto not used in java?

Let's talk about two reserved but unused Java keywords - const and goto. Why aren't they used? As I understand it, const can be replaced with public static final, but what about goto?