How do i pass input from java file to c++ file process it on c++ file and send output to java file again
I want to design a login form using java swing but i want to send input to c++ file and to make logical decisions , and send output through java swing. Its sort a java as frontend and c++ as backend.
Thu mua phế liệu giá cao Quang Đạt?
Công ty thu mua phế Liệu Quang Đạt với nhiều năm kinh nghiệm hoạt động trong ngành phế liệu tại TPHCM nói riêng và trên toàn quốc nói chung, đơn vị cam kết đem đến cho quý khách hàng dịch vụ thu mua phế liệu giá cao, tận nơi, chuyên nghiệp, uy tín với mức giá tốt nhất.
Java & C# – why I can cast every object to interface (explicitly)
I know the concept of polymorphism and can get the idea, but I yet found an answer to why both in Java and C# the compiler allows you cast some class into interface, although the class doesn’t implement the interface at all.
If I run same code in c and java int a =10; int b = ++a + a++ + –a; the answer is different
If I run this code in c and java int a =10; int b = ++a + a++ + –a; java give 33 correct answer but why c give 34 and how it works ?
as of my knowledge theoretically 33 is correct answer.
How to print a line in Java to console?
I can’t print a line to console with Java
Is the onion architecture(Clean architecture) the embodiment of the dependency inversion principle?
I think that the onion architecture is more and more abstruse from domain model to observability services.A personal understanding of the dependency inversion principle is to abstract the interface, and the interface design is also based on OCP.I want to know my thoughts is right?I want to deeply study the onion architecture.Thanks everybody!
Is there any way to solve such expressions
I want to solve this expression
Why Java outperforms C++
Two nested loops, each for 100000 times, in Java and C++. Have observed, with consistency, that Java outperforms C++. C++ took 3.26 s, whereas Java took 0.019 s. Can this be explained?