Movatterモバイル変換


[0]ホーム

URL:


Sorry, we no longer support your browser
Please upgrade toMicrosoft Edge,Google Chrome, orFirefox. Learn more about ourbrowser support.
Skip to main content

Stack Exchange Network

Stack Exchange network consists of 183 Q&A communities includingStack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.

Visit Stack Exchange
Loading…
Software Engineering

Questions tagged [object-oriented]

Ask Question

A methodology that enables a system to be modeled as a set of objects that can be controlled and manipulated in a modular manner

3,433 questions
Filter by
Sorted by
Tagged with
0votes
2answers
111views

I’m building a modular REST API using Node.js + Express + TypeScript.My controllers are defined as classes. In my route files, I currently create a new controller instance, like this:import { Router ...
0votes
2answers
189views

I have a Python class called FunctionsManager; its __init__() method is the following:class FunctionsManager: def __init__(self, instance_class1, instance_class2, ..., instance_classN): ...
2votes
1answer
260views

I’m designing a backend in TypeScript (could also apply to JavaScript), and I’m wondering about the architectural approach.Is it better to stick to a single paradigm (e.g., fully object-oriented or ...
1vote
1answer
255views

We have a CAD software extension, where you can draw products like walls, doors, windows, etc., and you can export the drawing as an order, which contains the parts and costs.As part of this export, ...
2votes
3answers
638views

Sometimes, you inherit from a class that defines the semantics of your type (Shape – Ellipse – Circle). Other times, you inherit simply because it's convenient to do so.A superclass may have ...
Sergey Zolotarev's user avatar
-1votes
1answer
142views

So I was coding in C for a while now, getting used to language syntax and different styles.Implemented a couple of simple data structures, algorithms and tried my skills in making Minesweeper clone....
5votes
3answers
667views

I am having a really hard time deciding where to instantiate my entities in the refactoring I am making. The project was built with DDD and it's layered: it has the infra, domain and app layers. In ...
3votes
6answers
608views

I'm currently drafting a Python coding standard for internal enterprise use, primarily targeting business applications that involve heavy data access, reporting, and transactional logic.In this ...
0votes
2answers
376views

im kind of a newbie so take me easyi face a problem every time i make a projectspecially Client projects, which is Global State i always struggle to do itfor example, here is the structure of one ...
4votes
2answers
2kviews

I've read somewhere about a pattern that is as follows: if it'll change the state of the instance, the method should be named with a verb and return void; and if the method just returns something (...
0votes
2answers
157views

I’m designing a system where various “handlers” apply business rules to an object. Initially I had each handler receive the full domain object:// A large domain object with many properties and ...
1vote
1answer
119views

Let's say I have the following Java code:public record Person(String firtName, String lastName, int age) {}Can it makes sense to have instead:public record Person(FirstName firtName, LastName ...
3votes
2answers
265views

I am developing a python package that needs to be able to read/write from/to multiple formats. E.g. foo format and bar format. I am trying to contain the functions relating to each format in a single ...
Luce's user avatar
  • 139
3votes
7answers
563views

I'm working on a custom Magento 2 module in my internship, and I'm trying to follow SOLID principles in my code.Right now, my controller actions handle everything: getting request data, processing it,...
2votes
2answers
248views

I have a complex process implemented in Java Spring microservice.Currently this process is triggered on user request and it is synchronously executed.This often results in a gateway timeout....

153050per page
1
2345
229

Hot Network Questions

more hot questions
Newest object-oriented questions feed

[8]ページ先頭

©2009-2025 Movatter.jp